Last active
February 2, 2020 08:34
-
-
Save glacion/300a7601a64cbd2d1a4aa5f75c9a9740 to your computer and use it in GitHub Desktop.
Bulk Rename
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
#!/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