DISQUS

Tech-Recipes: Recursively delete certain files | UNIX | Tech-Recipes

  • Vlada · 5 years ago
    at the end of the second command should be semicolon instead of double dot
  • qmchenry · 5 years ago
    Thanks for noticing this and sharing with us! I've corrected the error in the recipe.

    Quinn
  • cabbag · 3 years ago
    find . -type f -name *.bak -print0 | xargs -0 rm
  • virtualtrader · 1 month ago
    Why does the following not work, recursively?

    rm -vR folderToStartAt/*ext