[emdfqmm@nfwne ncndnkln]$ ll -h | grep "Oct" | grep "2018" | xargs du -ch
5.0G ./something
5.0G .
5.0G total
[emdfqmm@nfwne ncndnkln]$ ll -h | grep "Oct" | grep "2018" | wc -l
0
空の入力がある場合は、ディレクトリ全体のサイズを計算します。これを停止する方法
答え1
xargs
入力が与えられていない場合は、実行しないことを選択できます。
-r, --no-run-if-empty
If the standard input does not contain any nonblanks, do not run
the command. Normally, the command is run once even if there is
no input. This option is a GNU extension.
だから代わりにそれを使用してくださいxargs -r du -ch
。
答え2
find
次のように使用します-exec
。
month="Oct-2018";
find . -mindepth 1 -maxdepth 1 -newermt "01-$month -1 sec" -and -not -newermt "01-$month +1 month -1 sec" -exec du -ch {} \;
du -sh
しかし、とにかくあなたはそれをしたいと思いますdu -ch
。
バラより