码迷,mamicode.com
首页 > 其他好文 > 详细

tree、find、tail命令重要实战

时间:2016-07-11 14:06:28      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:

tree -L 1 -d

ln -s ext msn  创建软连接

ls -lF| sed -n‘/^d/p’

ls -lF|awk ‘/^d’

ls -lrt  按时间倒着排

vi /etc/profile 加 alias grep=’grep --color=auto’

. /etc/profile 改颜色

Find /oldboy/test/ -type f -name “access*.log” -mtime -7   最近7天

Find /oldboy/test/ -type f -name “access*.log” -mtime +7  7天以前

Find /oldboy/test/ -type f -name “access*.log” -mtime +7|xarg rm -f

Find /oldboy/test/ -type f -name “access*.log” -mtime +7 -exec rm -f {} \;

          -mtime 修改时间

          -ctime change过的文档

          -atime access过的文档

 

tail -f /var/log/messages  跟踪文件结尾变化

tail  /var/log/messages

tail -F /var/log/messages

tree、find、tail命令重要实战

标签:

原文地址:http://www.cnblogs.com/bossbo/p/5659930.html

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