使用脚本检查主目录中常规文件的大小是否大于或等于1KB

时间:2016-03-24 21:00:29

标签: linux bash unix

正如标题所说,我目前很难在我的主目录中检查文件。

只是我当前的脚本如下   #!/ bin / sh的   echo find ~/ -type f -size +1023c -print

它会显示超过1kb的文件,但它会为我的主目录中的所有文件夹执行此操作。欢迎任何和所有提示,谢谢。

1 个答案:

答案 0 :(得分:1)

find ~/ -maxdepth 1 -type f -size +1023c -print

来自手册页:

-maxdepth levels
     Descend at most levels (a non-negative integer) levels of
     directories below the command line arguments.  -maxdepth 0
     means only apply the tests and actions to the command line
     arguments.