首页 > 代码库 > 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练习
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。