Skip to content

Instantly share code, notes, and snippets.

@gidgid
Last active June 26, 2023 19:32
Show Gist options
  • Save gidgid/1244d8d4f8404e1be4d2c5e38cf304f1 to your computer and use it in GitHub Desktop.
Save gidgid/1244d8d4f8404e1be4d2c5e38cf304f1 to your computer and use it in GitHub Desktop.
Delete multiple files with FZF
# Delete multiple files with FZF
rmf() {
ls | fzf -m | xargs -I {} rm {}
}
@ness001
Copy link

ness001 commented May 7, 2023

Thank you.

@gidgid
Copy link
Author

gidgid commented Jun 3, 2023

My pleasure @ness001

@nkh
Copy link

nkh commented Jun 26, 2023

present a preview, plus this will fail when deleting directories

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment