[root@shell ~]# head -6 /etc/passwd | tail -1
sync:x:5:0:sync:/sbin:/bin/sync
[root@shell ~]# sed -n '6p' /etc/passwd
sync:x:5:0:sync:/sbin:/bin/sync
[root@shell ~]# awk 'NR==6' /etc/passwd
sync:x:5:0:sync:/sbin:/bin/sync
[root@shell ~]# cut -d ":" -f7 /etc/passwd | sort -u #sort -u为排序并去重
/bin/bash
/bin/sync
/sbin/halt
/sbin/nologin
/sbin/shutdown
/usr/sbin/nologin
[root@shell ~]# [[ `wc -l < /var/log/messages` >100 ]] && echo 好大的文件
好大的文件
wc -l /var/log/messages
会把文件名/var/log/messages
一起进行输出;而wc -l < /var/log/messages
则只会输出统计结果。wc -l < /var/log/messages
的输入来自文件/var/log/messages
,而不是来自标准输入,也就是键盘输入。
[root@shell ~]# find /etc -type f -name "pa*" | wc -l
11
[root@shell ~]# id fox &>/dev/null && echo 用户已存在 || useradd fox
[root@shell ~]# id fox &>/dev/null && echo 用户已存在 || useradd fox
用户已存在
[root@shell ~]# vim mkf.sh +
#!/bin/bash
ls /root
mkdir kk
cd kk
touch aa
chmod +x aa
[root@shell ~]# bash mkf.sh
2 aa anaconda-ks.cfg date.txt mkf.sh
[root@shell ~]# cd kk
[root@shell kk]# ll
总用量 0
-rwxr-xr-x. 1 root root 0 11月 19 20:30 aa
7、编写一个 Shell 程序 test3,程序执行时从键盘读入一个目录名,然后 显示这个目录下所有文件的信息
root@shell ~]# vim test3.sh +
read -p "请输入一个目录名:" dir_name
ls -l ${dir_name}
[root@shell ~]# bash test3.sh
请输入一个目录名:/etc/hosts
-rw-r--r--. 1 root root 158 6月 23 2020 /etc/hosts
[root@shell ~]# bash test3.sh
请输入一个目录名:/etc/passwd
-rw-r--r--. 1 root root 2176 11月 19 20:20 /etc/passwd
8、编写一个 Shell 程序 test4,从键盘读入 x、y 的值,然后做加法运算,最后输出结果
[root@shell ~]# vim test4.sh +
read -p "请输入两个数:" a b
echo $[a+b]
[root@shell ~]# bash test4.sh
请输入两个数:1 2
3