Skip to content

Instantly share code, notes, and snippets.

@cobanov
Created November 3, 2022 05:07
Show Gist options
  • Save cobanov/36b1273a247ffff757af70e8783ba57b to your computer and use it in GitHub Desktop.
Save cobanov/36b1273a247ffff757af70e8783ba57b to your computer and use it in GitHub Desktop.
Find all hidden files and it's subdirs and delete it
## Find all hidden files in /tmp/data/ (and it's sub-dirs) and delete it ##
find /tmp/data/ -type f -name ".*" -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment