首页 > 代码库 > shell练习

shell练习

需求1:从一个目录中取出最近访问的5个文件,并且要求输出文件名和最后的访问时间。

[root@lianxi1 ~]# ls -lut |grep "^-" |head -n5 |awk ‘{print $6,$7,$8,$NF}‘

需求2:查看当前系统中的各种shell程序,统计他们有多少个用户使用。

[root@lianxi1 ~]# cat /etc/passwd | cut -d ‘:‘ -f7 |sort |uniq -c |sort -nr
OR
[root@lianxi1 ~]# cat /etc/passwd | cut -d ‘:‘ -f7 |sort -u //-u去重复的作用
OR
[root@lianxi1 ~]# cat /etc/passwd | awk -F‘:‘ ‘{print $NF}‘ |sort |uniq -c |sort -nr

需求3:统计一个文本文件单词出现的个数。

cat /etc/passwd > outfile
cat outfile |tr ‘[:punct:]‘ ‘ ‘ |tr ‘[:space:]‘ ‘ ‘ |tr ‘[:cntrl:]‘ ‘ ‘ |tr ‘[:digit:]‘ ‘ ‘ |tr ‘[:lower:]‘ ‘[:upper:]‘ |tr -s ‘ ‘ | tr ‘ ‘ ‘\n‘ |sort |uniq -c | sort -nr


本文出自 “自定义” 博客,谢绝转载!

shell练习