sh Debian shell命令

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh Debian shell命令相关的知识,希望对你有一定的参考价值。

du -h --max-depth=1 #  Outputs the size of all the files and folders within current folder, in human readable format.

find -size +100M # This command combination, Lists all the files/folders the size of which is 100M or more
find -type f -exec du -Sh {} + | sort -rh | head -n 5 # display the biggest file sizes only
find /dir/path/ -type f -exec du -Sh {} + | sort -rh | head -n 5
# Ctrl + R - shortcut for search in history

以上是关于sh Debian shell命令的主要内容,如果未能解决你的问题,请参考以下文章

关于sh,bash和dash

sh Debian Linux命令

linux centos系统的sh文件改成debian系统的文件

sh 在一个命令中使用自定义补丁,配置和名称后缀为nginx构建Ubuntu或Debian软件包

Linux-SHELL中sh和bash的区别

怎么用一个命令使多个shell脚本并行执行? 例如三个脚本 run1.sh,run2.sh