Skip to content

Instantly share code, notes, and snippets.

@glacion
Last active February 2, 2020 08:34
Show Gist options
  • Save glacion/300a7601a64cbd2d1a4aa5f75c9a9740 to your computer and use it in GitHub Desktop.
Save glacion/300a7601a64cbd2d1a4aa5f75c9a9740 to your computer and use it in GitHub Desktop.
Bulk Rename
#!/bin/sh
find . -type f -printf "%f\n" | xargs -I@ sh -c "mv @ file-@"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment