ls
-l 显示详细信息
-a 显示所有文件
-lt 排序
-lrt 倒序
free
uname
source 使文件生效
find 通过直接搜索硬盘的方式查找的,可以保证查找的信息绝对可靠。并且支持各种查找条件,但是搜索速度慢,
find 路径 参数
-type 类型
-exec
find /root/ -type f ! -name "1.txt"
find /root/ -type f -exec mv {} /root/test/ \;
find /root/ -type f ! -name "1.txt"|xargs rm
cat 把文件内容全部打印出来
-n 打印行数
后续会继续添加...
原文地址:http://blog.51cto.com/12390045/2117975