11.显示/etc/inittab 中以#开头,且后面跟了一个或者多个空白字符,而后又跟了任意非空白字符的行
grep “^# \{1,\}[^ ]” /etc/inittab
12.显示/etc/inittab 中包含了:一个数字:(即两个冒号中间一个数字)的行
grep “\:[0-9]\{1\}\:” /etc/inittab
13.怎么把脚本添加到系统服务里,即用 service 来调用
在脚本里加入
1
2
3
|
#!/bin/bash
# chkconfig: 345 85 15
# description: httpd
|
然后保存
chkconfig httpd –add 创建系统服务
现在就可以使用 service 来 start or restart
14.写一个脚本,实现批量添加 20 个用户,用户名为 user01-20,密码为 user 后面跟 5 个随机字符
1
2
3
4
5
6
|
#!/bin/bash
#description: useradd
for
i
in
`
seq
-
f
“%02g”
1
20
`
;
do
useradd
user
i</span></div><divclass="crayon−line"style="border:0px;font−family:inherit;font−style:inherit;margin:0px;padding:0px5px;vertical−align:baseline;background:0pxcenter;height:inherit;"><spanclass="crayon−r"style="border:0px;font−family:inherit;font−style:inherit;margin:0px;padding:0px;vertical−align:baseline;height:inherit;color:rgb(203,75,22);">echo</span><spanclass="crayon−h"style="border:0px;font−family:inherit;font−style:inherit;margin:0px;padding:0px;vertical−align:baseline;height:inherit;color:rgb(220,50,47);"></span><spanclass="crayon−s"style="border:0px;font−family:inherit;font−style:inherit;margin:0px;padding:0px;vertical−align:baseline;height:inherit;color:rgb(42,161,152);">"user i < / s p a n >< / d i v >< d i v c l a s s =" c r a y o n − l i n e " s t y l e =" b o r d e r : 0 p x ; f o n t − f a m i l y : i n h e r i t ; f o n t − s t y l e : i n h e r i t ; m a r g i n : 0 p x ; p a d d i n g : 0 p x 5 p x ; v e r t i c a l − a l i g n : b a s e l i n e ; b a c k g r o u n d : 0 p x c e n t e r ; h e i g h t : i n h e r i t ; ">< s p a n c l a s s =" c r a y o n − r " s t y l e =" b o r d e r : 0 p x ; f o n t − f a m i l y : i n h e r i t ; f o n t − s t y l e : i n h e r i t ; m a r g i n : 0 p x ; p a d d i n g : 0 p x ; v e r t i c a l − a l i g n : b a s e l i n e ; h e i g h t : i n h e r i t ; c o l o r : r g b ( 203 , 75 , 22 ) ; "> e c h o < / s p a n >< s p a n c l a s s =" c r a y o n − h " s t y l e =" b o r d e r : 0 p x ; f o n t − f a m i l y : i n h e r i t ; f o n t − s t y l e : i n h e r i t ; m a r g i n : 0 p x ; p a d d i n g : 0 p x ; v e r t i c a l − a l i g n : b a s e l i n e ; h e i g h t : i n h e r i t ; c o l o r : r g b ( 220 , 50 , 47 ) ; ">< / s p a n >< s p a n c l a s s =" c r a y o n − s " s t y l e =" b o r d e r : 0 p x ; f o n t − f a m i l y : i n h e r i t ; f o n t − s t y l e : i n h e r i t ; m a r g i n : 0 p x ; p a d d i n g : 0 p x ; v e r t i c a l − a l i g n : b a s e l i n e ; h e i g h t : i n h e r i t ; c o l o r : r g b ( 42 , 161 , 152 ) ; ">" u s e r i:`echo $RANDOM|md5sum|cut -c 1-5`”
|
passwd
–
stdinuser
i >/dev/null 2>&1 done |
15.写一个脚本,实现判断 192.168.1.0/24 网络里,当前在线的 IP 有哪些,能 ping 通则认为在线
1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/bin/bash for ip in `seq 1 255` do { ping -c 1 192.168.1.$ip > /dev/null 2>&1 if [ $? -eq 0 ]; then echo 192.168.1.$ip UP else echo 192.168.1.$ip DOWN fi }& done wait |
16.写一个脚本,判断一个指定的脚本是否是语法错误;如果有错误,则提醒用户键入 Q 或者 q 无视错误并退出其它任何键可以通过 vim 打开这个指定的脚本
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | [root@localhost tmp]# cat checksh.sh #!/bin/bash read -p "please input check script-> " file if [ -f i >/dev/null 2>&1 done |
15.写一个脚本,实现判断 192.168.1.0/24 网络里,当前在线的 IP 有哪些,能 ping 通则认为在线
1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/bin/bash for ip in `seq 1 255` do { ping -c 1 192.168.1.$ip > /dev/null 2>&1 if [ $? -eq 0 ]; then echo 192.168.1.$ip UP else echo 192.168.1.$ip DOWN fi }& done wait |
16.写一个脚本,判断一个指定的脚本是否是语法错误;如果有错误,则提醒用户键入 Q 或者 q 无视错误并退出其它任何键可以通过 vim 打开这个指定的脚本
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | [root@localhost tmp]# cat checksh.sh #!/bin/bash read -p "please input check script-> " file if [ -f file
]
;
then
sh
-
n
file > /dev/null 2>&1 if [ file > /dev/null 2>&1 if [
?
-
ne
0
]
;
then
read
-
p
“You input file syntax error,[Type q to exit or Type vim to edit]" answer case file syntax error,[Type q to exit or Type vim to edit]" answer case answer
in
q
|
Q
)
exit
0
;
;
vim
)
vim
file ;; *) exit 0 ;; esac fi else echo " file ;; *) exit 0 ;; esac fi else echo " file not exist”
exit
1
fi
|
17、写一个脚本:(26 包括 3 个小题)
1、创建一个函数,能接受两个参数:
1)第一个参数为 URL,即可下载的文件;第二个参数为目录,即下载后保存的位置;
2)如果用户给的目录不存在,则提示用户是否创建;如果创建就继续执行,否则,函数返回一个 51 的错误值给调用脚本;
3)如果给的目录存在,则下载文件;下载命令执行结束后测试文件下载成功与否;如果成功,则返回 0 给调用脚本,否则,返回 52 给调用脚本;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
[
root
@
localhost
tmp
]
# cat downfile.sh
#!/bin/bash
url
=
</span><spanclass="crayon−cn"style="border:0px;font−family:inherit;font−style:inherit;margin:0px;padding:0px;vertical−align:baseline;height:inherit;color:rgb(42,161,152);">1</span></div><divclass="crayon−linecrayon−striped−line"style="font−family:inherit;font−style:inherit;margin:0px;padding:0px5px;vertical−align:baseline;height:inherit;border−width:1px;border−color:rgb(204,204,204);"><spanclass="crayon−v"style="border:0px;font−family:inherit;font−style:inherit;margin:0px;padding:0px;vertical−align:baseline;height:inherit;color:rgb(38,139,210);">dir</span><spanclass="crayon−o"style="border:0px;font−family:inherit;font−style:inherit;margin:0px;padding:0px;vertical−align:baseline;height:inherit;color:rgb(133,153,0);">=</span><spanclass="crayon−sy"style="border:0px;font−family:inherit;font−style:inherit;margin:0px;padding:0px;vertical−align:baseline;height:inherit;color:rgb(220,50,47);"> < / s p a n >< s p a n c l a s s =" c r a y o n − c n " s t y l e =" b o r d e r : 0 p x ; f o n t − f a m i l y : i n h e r i t ; f o n t − s t y l e : i n h e r i t ; m a r g i n : 0 p x ; p a d d i n g : 0 p x ; v e r t i c a l − a l i g n : b a s e l i n e ; h e i g h t : i n h e r i t ; c o l o r : r g b ( 42 , 161 , 152 ) ; "> 1 < / s p a n >< / d i v >< d i v c l a s s =" c r a y o n − l i n e c r a y o n − s t r i p e d − l i n e " s t y l e =" f o n t − f a m i l y : i n h e r i t ; f o n t − s t y l e : i n h e r i t ; m a r g i n : 0 p x ; p a d d i n g : 0 p x 5 p x ; v e r t i c a l − a l i g n : b a s e l i n e ; h e i g h t : i n h e r i t ; b o r d e r − w i d t h : 1 p x ; b o r d e r − c o l o r : r g b ( 204 , 204 , 204 ) ; ">< s p a n c l a s s =" c r a y o n − v " s t y l e =" b o r d e r : 0 p x ; f o n t − f a m i l y : i n h e r i t ; f o n t − s t y l e : i n h e r i t ; m a r g i n : 0 p x ; p a d d i n g : 0 p x ; v e r t i c a l − a l i g n : b a s e l i n e ; h e i g h t : i n h e r i t ; c o l o r : r g b ( 38 , 139 , 210 ) ; "> d i r < / s p a n >< s p a n c l a s s =" c r a y o n − o " s t y l e =" b o r d e r : 0 p x ; f o n t − f a m i l y : i n h e r i t ; f o n t − s t y l e : i n h e r i t ; m a r g i n : 0 p x ; p a d d i n g : 0 p x ; v e r t i c a l − a l i g n : b a s e l i n e ; h e i g h t : i n h e r i t ; c o l o r : r g b ( 133 , 153 , 0 ) ; ">=< / s p a n >< s p a n c l a s s =" c r a y o n − s y " s t y l e =" b o r d e r : 0 p x ; f o n t − f a m i l y : i n h e r i t ; f o n t − s t y l e : i n h e r i t ; m a r g i n : 0 p x ; p a d d i n g : 0 p x ; v e r t i c a l − a l i g n : b a s e l i n e ; h e i g h t : i n h e r i t ; c o l o r : r g b ( 220 , 50 , 47 ) ; ">
2
download
(
)
{
if
[
[
!
-
d
dir ]];then read -p " dir ]];then read -p " dir No such directory,create?(y/n)”
answer
if
[
[
“answer" == "y" ]];then mkdir -p answer" == "y" ]];then mkdir -p dir
else
return
“51”
fi
fi
cd
dir && wget dir && wget url
>
/
dev
/
null
2
>
&
1
if
[
? -ne 0 ]; then return "52" fi return 0 } download ? -ne 0 ]; then return "52" fi return 0 } download url
dir</span></div><divclass="crayon−linecrayon−striped−line"style="font−family:inherit;font−style:inherit;margin:0px;padding:0px5px;vertical−align:baseline;height:inherit;border−width:1px;border−color:rgb(204,204,204);"><spanclass="crayon−r"style="border:0px;font−family:inherit;font−style:inherit;margin:0px;padding:0px;vertical−align:baseline;height:inherit;color:rgb(203,75,22);">echo</span><spanclass="crayon−h"style="border:0px;font−family:inherit;font−style:inherit;margin:0px;padding:0px;vertical−align:baseline;height:inherit;color:rgb(220,50,47);"></span><spanclass="crayon−sy"style="border:0px;font−family:inherit;font−style:inherit;margin:0px;padding:0px;vertical−align:baseline;height:inherit;color:rgb(220,50,47);"> d i r < / s p a n >< / d i v >< d i v c l a s s =" c r a y o n − l i n e c r a y o n − s t r i p e d − l i n e " s t y l e =" f o n t − f a m i l y : i n h e r i t ; f o n t − s t y l e : i n h e r i t ; m a r g i n : 0 p x ; p a d d i n g : 0 p x 5 p x ; v e r t i c a l − a l i g n : b a s e l i n e ; h e i g h t : i n h e r i t ; b o r d e r − w i d t h : 1 p x ; b o r d e r − c o l o r : r g b ( 204 , 204 , 204 ) ; ">< s p a n c l a s s =" c r a y o n − r " s t y l e =" b o r d e r : 0 p x ; f o n t − f a m i l y : i n h e r i t ; f o n t − s t y l e : i n h e r i t ; m a r g i n : 0 p x ; p a d d i n g : 0 p x ; v e r t i c a l − a l i g n : b a s e l i n e ; h e i g h t : i n h e r i t ; c o l o r : r g b ( 203 , 75 , 22 ) ; "> e c h o < / s p a n >< s p a n c l a s s =" c r a y o n − h " s t y l e =" b o r d e r : 0 p x ; f o n t − f a m i l y : i n h e r i t ; f o n t − s t y l e : i n h e r i t ; m a r g i n : 0 p x ; p a d d i n g : 0 p x ; v e r t i c a l − a l i g n : b a s e l i n e ; h e i g h t : i n h e r i t ; c o l o r : r g b ( 220 , 50 , 47 ) ; ">< / s p a n >< s p a n c l a s s =" c r a y o n − s y " s t y l e =" b o r d e r : 0 p x ; f o n t − f a m i l y : i n h e r i t ; f o n t − s t y l e : i n h e r i t ; m a r g i n : 0 p x ; p a d d i n g : 0 p x ; v e r t i c a l − a l i g n : b a s e l i n e ; h e i g h t : i n h e r i t ; c o l o r : r g b ( 220 , 50 , 47 ) ; ">
?
|
18、写一个脚本:(27 包括 2 个小题)
1、创建一个函数,可以接受一个磁盘设备路径(如/dev/sdb)作为参数;在真正开始后面步骤之前提醒用户有危险,并让用户选择是否继续;而后将此磁盘设备上的所有分区清空(提示,使用命令 dd if=/dev/zero of=/dev/sdb bs=512 count=1 实现,注意其中的设备路径不要写错了;
如果此步骤失败,返回 67 给主程序;
接着在此磁盘设备上创建两个主分区,一个大小为 100M,一个大小为 1G;如果此步骤失败,返回 68 给主程序;
格式化此两分区,文件系统类型为 ext3;如果此步骤失败,返回 69 给主程序;
如果上述过程都正常,返回 0 给主程序;
2、调用此函数;并通过接收函数执行的返回值来判断其执行情况,并将信息显示出来;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
if
[
[
-
n
1 && 1 &&
1
=
~
“/dev/sd[a-z]”
]
]
;
then
local
Darray
=
(
`
ls
/
dev
/
sd
[
a
-
z
]
`
)
for
i
in
{Darray};do [[ " {Darray};do [[ " i”
==
“1" ]] && Sd= 1" ]] && Sd= i
&&
break
done
else
return
66
fi
#当匹配成功,进入选择,告诉用户,是否继续,输错的话进入无限循环,当用户选择Y,则清空目标分区,且跳出while循环
while
:
;
do
read
-
p
“Warning!!!This operation will clean Sd data.Next=y,Quit=n [y|n]:" Choice case Sd data.Next=y,Quit=n [y|n]:" Choice case Choice
in
y
)
dd
if
=
/
dev
/
zero
of
=
Sd bs=512 count=1 &> /dev/null &&break || return 67 ;; n) exit 88 ;; *) echo "Invalid choice,please choice again." ;; esac done |
#使用 echo 传递给 fdisk 进行分区,如果此命令失败,则跳转出去,错误值 68,需要注意的是,有时候这个返回值很诡异,笔者之前成功与否都是返回的 1,后来重启之后,就好了,如果慎重的话,可以对创建的分区,进行判断,不过就需要使用其他工具截取相关字段了,虽有些小麻烦,但无大碍
1 | echo-e "n\np\n1\n\n+100M\nn\np\n2\n\n+1024M\nw\n"|fdisk /dev/sdb&> /dev/null || return 68 |
#格式化之前,让内核重新读取磁盘分区表,值得注意的是,有的系统版本,使用 partprobe 无效,譬如笔者的环境是 rhel5.8,而 rhel6.0 以后,这个命令就很危险了,而使用 partx -a /dev/sdb 则效果更好…此项需慎重,如果格式化失败,则告知把失败的分区定义成变量,且跳出函数,并带出错误值 69
1 2 3 4 5 6 7 | `partprobe` Part=`fdisk -l /dev/ Sd bs=512 count=1 &> /dev/null &&break || return 67 ;; n) exit 88 ;; *) echo "Invalid choice,please choice again." ;; esac done |
#使用 echo 传递给 fdisk 进行分区,如果此命令失败,则跳转出去,错误值 68,需要注意的是,有时候这个返回值很诡异,笔者之前成功与否都是返回的 1,后来重启之后,就好了,如果慎重的话,可以对创建的分区,进行判断,不过就需要使用其他工具截取相关字段了,虽有些小麻烦,但无大碍
1 | echo-e "n\np\n1\n\n+100M\nn\np\n2\n\n+1024M\nw\n"|fdisk /dev/sdb&> /dev/null || return 68 |
#格式化之前,让内核重新读取磁盘分区表,值得注意的是,有的系统版本,使用 partprobe 无效,譬如笔者的环境是 rhel5.8,而 rhel6.0 以后,这个命令就很危险了,而使用 partx -a /dev/sdb 则效果更好…此项需慎重,如果格式化失败,则告知把失败的分区定义成变量,且跳出函数,并带出错误值 69
1 2 3 4 5 6 7 | `partprobe` Part=`fdisk -l /dev/ Sd|tail -2|cut -d” ” -f1` for M in $
{
Part
}
;
do
mke2fs
-
j
M &> /dev/null && ErrorPart= M &> /dev/null && ErrorPart= M
&&
return
69
done
return
0
}
|
#下面代码,调用函数,接收函数返回值,根据返回值进行判断哪里出错。
1
2
3
4
5
6
7
|
Disk
_Mod
</span><spanclass="crayon−cn"style="border:0px;font−family:inherit;font−style:inherit;margin:0px;padding:0px;vertical−align:baseline;height:inherit;color:rgb(42,161,152);">1</span></div><divclass="crayon−linecrayon−striped−line"style="font−family:inherit;font−style:inherit;margin:0px;padding:0px5px;vertical−align:baseline;height:inherit;border−width:1px;border−color:rgb(204,204,204);"><spanclass="crayon−v"style="border:0px;font−family:inherit;font−style:inherit;margin:0px;padding:0px;vertical−align:baseline;height:inherit;color:rgb(38,139,210);">Res</span><spanclass="crayon−o"style="border:0px;font−famil
|