Created
May 4, 2019 20:24
-
-
Save letroll/8ee36a7e5baf2bda4ee29ecf1e002f99 to your computer and use it in GitHub Desktop.
[remove file which filename containing "toto" (recursive)] remove file with filename filter #shell #rm #filter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| find . -name "*toto*" -exec rm -f '{}' + |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment