查找大文件

du -h / --exclude=/proc --max-depth=10 | grep -E "^[1-9]+\.?[0-9]?G"
du -h / --exclude=/proc --max-depth=10 | grep -E "^[1-9]+\.?[0-9]?G|^[0-9]{3}M" # 加上三位数的M
docker rmi -f `docker images -q` # 不会删除正在使用的镜像

find / ! -path "/proc/*" ! -path "/sys/*" -type f -ctime -1 -ls

# 查找7天内被修改的文件
find  ./website/  -mtime  -7  -type f  -exec ls -l  {} \;
# 查找7天内被修改的php文件
find  ./website/  -name *.php -mtime  -7  -type f  -exec ls -l  {} \;
posted @ 2022-03-01 17:56  1769987233  阅读(104)  评论(0编辑  收藏  举报