История изменений
Исправление WatchCat, (текущая версия) :
$ man xargs
-n max-args, --max-args=max-args
Use at most max-args arguments per command line. Fewer than max-args arguments will be used if the size (see the -s option) is exceeded, unless the -x option is given, in
which case xargs will exit.
$ find <path> -type f | xargs -n4 rm
Будет удалять по 4-ре за раз.
Исходная версия WatchCat, :
# man xargs
-n max-args, --max-args=max-args
Use at most max-args arguments per command line. Fewer than max-args arguments will be used if the size (see the -s option) is exceeded, unless the -x option is given, in
which case xargs will exit.