Skip to content

Instantly share code, notes, and snippets.

@leollon
Last active June 5, 2020 04:21
Show Gist options
  • Save leollon/702e4cfda4bde03f76c2b01158ac4413 to your computer and use it in GitHub Desktop.
Save leollon/702e4cfda4bde03f76c2b01158ac4413 to your computer and use it in GitHub Desktop.
remove file pattern
#/bin/bash
#
# for: remove files that satify the specified pattern
#
find -type f-iname "<pattern>" -exec rm -rf'{}' \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment