which 命令
which ls
列出ls的绝对路径及alias
内置命令
外置命令
type cd
type ls
whereis ls
-------------------------------------------------------------------------------------------
find 命令
find /root -type d
find /root -name "1111"
find /root -name "1111*"
find /root -name "1111*" -mtime -5 5天以内 +5 是5天以前
find /root -name "1111*" -mmin -5 5分钟以内
find /root -name "1111*" -mmin -5 | xargs ls -l 5分钟之内创建的文件并显示文件
find /root -name "1111*" -mmin -5 -exec ls -l {}\;5分钟之内创建的文件并显示文件
atime ctime mtime
atime 访问时间
ctime 更改属性时间 inode
mmtime 更改内容时间
用 stat 1.txt 命令查看文件3个time
find /etc ! -type d 查找所有非目录文件 !取反
32分钟
原文地址:http://9872158.blog.51cto.com/9862158/1792685