Skip to content

Instantly share code, notes, and snippets.

@bhumit070
Last active September 6, 2025 04:25
Show Gist options
  • Select an option

  • Save bhumit070/c7e1e89c6cb5c611eec7b7151288940f to your computer and use it in GitHub Desktop.

Select an option

Save bhumit070/c7e1e89c6cb5c611eec7b7151288940f to your computer and use it in GitHub Desktop.
Command to delete given file in any folder and sub folders.
find . -type f -name "temp.txt" -print -exec rm -f {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment