Last active
June 26, 2023 19:32
-
-
Save gidgid/1244d8d4f8404e1be4d2c5e38cf304f1 to your computer and use it in GitHub Desktop.
Delete multiple files with FZF
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
# Delete multiple files with FZF | |
rmf() { | |
ls | fzf -m | xargs -I {} rm {} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you.