rm * - Argument list too long
Going through and cleaning out a temporary folder I came across a problem using rm *. It came back with the error Argument list too long. Turns out it’s some type of limit in how many files can be passed and the 110,000 that were in the folder was too many.
So I wrote [...]