码迷,mamicode.com
首页 > 系统相关 > 详细

shell练习

时间:2016-11-08 20:41:12      阅读:183      评论:0      收藏:0      [点我收藏+]

标签: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练习

标签:shell

原文地址:http://zidingyi.blog.51cto.com/10735263/1870662

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!