Category: General
When running em command on Linux, Get Error: Argument list too long
The fix is to pipe the find into rm
find . -print0 | xargs -0 rm -f
Linux
Category: General
When running em command on Linux, Get Error: Argument list too long
The fix is to pipe the find into rm
find . -print0 | xargs -0 rm -f
Linux