Linux 常用命令

1. 查看进程文件打开数

lsof -n |awk '{print $2 " " $3}'|sort|uniq -c |sort -nr|more

2.后台启动且不生成日志

nohup ./test.sh > /dev/null 2>&1 &

3.查找10天以前的文件并移到指定目录

find /test/ -mtime +10 -name "*" | xargs -i mv {} /test2/

4.查找哪个目录下文件大于指定大小

find / -size +100M -exec ls -lh {} \;

相关推荐