A Note About Removing Files With find(1)
I’ve seen on the internet, and elsewhere, that when there are too many arguments for rm(1) to handle, that the following command will suffice: % find /path -exec rm -rf {} \; While certainly functional, it’s not optimal. If there are thousands of files (as is often the case at my job), this command is [...]