If you want delete very many files in *nix and saw message “Argument list too long” then you should use next command:
$ find /tmp/your_path -type f -exec rm {} ';' |
If you want delete very many files in *nix and saw message “Argument list too long” then you should use next command:
$ find /tmp/your_path -type f -exec rm {} ';' |