HowToUnix: Problem in file removal -sh: /bin/rm: Argument list too long
Error:-
Was getting -sh: /bin/rm: Argument list too long error while trying to delete more than 60K files.
Resolution:-
find . -name "*.abc" -exec rm {} \;
Which will remove all files ending with 'abc'.
Check the following link
Argument list too long
Labels: Technical_HowTo_Unix