正如标题所说,我目前很难在我的主目录中检查文件。
只是我当前的脚本如下
#!/ bin / sh的
echo find ~/ -type f -size +1023c -print
它会显示超过1kb的文件,但它会为我的主目录中的所有文件夹执行此操作。欢迎任何和所有提示,谢谢。
答案 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.