Skip to content

Instantly share code, notes, and snippets.

@1gg
Created September 30, 2021 20:42
Show Gist options
  • Save 1gg/600e2474d7cb4e47c80f09681e195cf9 to your computer and use it in GitHub Desktop.
Save 1gg/600e2474d7cb4e47c80f09681e195cf9 to your computer and use it in GitHub Desktop.
bash batch replace in filenames
for f in *; do echo mv \'"$f"\' \'"${f/mp4/pdf}"\'; done
for f in *; do echo mv \'"$f"\' \'"${f/pdf/mp4}"\'; done
for f in *; do mv \'"$f"\' \'"${f/pdf/mp4}"\'; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment