linux:nice-to-know

This is an old revision of the document!


Nice to know Stuff


Find a spezific folder by name and delete it recursivly. Search down from current directory:

# find . -type d -name "@eaDir" -print0 | xargs -0 rm -rf


Find a spezific file by name and delete it recursivly. Search down from current directory:

# find . -type f -name "Thumbs.db" -print0 | xargs -0 rm -f




  • linux/nice-to-know.1515170140.txt.gz
  • Last modified: 2018/01/05 17:35
  • by michael