摘要: #统计查找到文件总的大小 ls -lh | grep ^- | awk 'BEGIN{sum=0}{sum += $5};END{print sum}' #这种方式也可以统计文件总的大小,但是只适合单位相同时。 find ./ -type f -mtime +3 -name "*.log" | xa 阅读全文
posted @ 2020-05-15 14:49 ~驰~ 阅读(824) 评论(0) 推荐(0) 编辑