Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rubenruizdegauna/1da4995bd72389de579c97038c11c781 to your computer and use it in GitHub Desktop.
Save rubenruizdegauna/1da4995bd72389de579c97038c11c781 to your computer and use it in GitHub Desktop.
Remove multiple files in linux without eating all I/O
find PATH_TO_DELETE_FROM -type f -exec rm -fv {} \; -exec sleep 0.01 \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment