tail
aws
sed
grep
find
- 查看当前目录指定文件并递归删除
find -name "*.pdf" | xargs rm -fr
- 查找指定目录下 大小 大于 100M的文件
find / -type f -size +100M -print0 | xargs -0 du -h | sort -nr
查找大目录
du -h --max-depth=1
find -name "*.pdf" | xargs rm -fr
find / -type f -size +100M -print0 | xargs -0 du -h | sort -nr
du -h --max-depth=1
本文标题:文件操作相关
本文链接:https://www.haomeiwen.com/subject/gjmzbktx.html
网友评论