1、取出/etc/inittab文件的第6行
2、取出当前系统上所有用户的shell,要求,每种shell只显示一次,并且按顺序进行显示,使用cut、sort结合管道实现
[root@localhost ~]# cut -d : -f 7 /etc/passwd | sort -u
3、如果/var/log/messages文件的行数大于100,就显示好大的文件
4、显示/etc目录下所有以pa开头的文件,并统计其个数
5、如果用户hadoop不存在就添加,否则显示用户已存在
6、编写一个 Shell 程序 test1,程序执行时从键盘读入一个目录名,然后 显示这个目录下所有文件的信息
[root@localhost ~]# mkdir /test1
[root@localhost ~]# cd /test1
[root@localhost test1]# touch a{1..5}
[root@localhost test1]# ls
a1 a2 a3 a4 a5
[root@localhost ~]# vim test1.sh
#!/bin/bash
read -p "请输入目录名:" dir
if [ -d $dir ]
then
ls $dir
else
echo "目录不存在!"
fi
[root@localhost ~]# sh test1.sh
请输入目录名:/test1
a1 a2 a3 a4 a5
7、编写一个 Shell 程序 test2,从键盘读入 x、y 的值,然后做加法运算,最后输出结果
[root@localhost ~]# vim test2.sh
#!/bin/bash
read -p "请输入第一个数:" x
read -p "请输入第二个数:" y
echo $[x+y]
[root@localhost ~]# vim test2.sh
[root@localhost ~]# sh test2.sh
请输入第一个数:3
请输入第二个数:4
7