January 22, 2016

delete all directories except with name contaning "Deez*"


find . -maxdepth 1 -type d -not -name "Deez*" -not -name "." -not -name ".." -exec rm -r {} \;

No comments:

Post a Comment

How to type letters with accent

Very useful article https://www.freecodecamp.org/news/how-to-type-letters-with-accents-on-mac/