This commit is contained in:
guobao.jiang 2016-06-22 20:56:01 +08:00
parent a46e12b410
commit 0bf622531c
1 changed files with 3 additions and 0 deletions

View File

@ -37,3 +37,6 @@ du -h --max-depth=1 . |sort -h # 从小到大排序
# 找到当前文件夹下大于10M的文件
find . -type f -size +10M
find . -maxdepth 1 -type f -size +10M # 递归
# 解压.gz文件
gunzip -c abc.gz >abc16