Skip to content

Instantly share code, notes, and snippets.

@pathologicalhandwaving
Forked from ttscoff/chgext.sh
Created February 20, 2025 09:59
Show Gist options
  • Select an option

  • Save pathologicalhandwaving/c14d21dc5065e922650d397644e850cc to your computer and use it in GitHub Desktop.

Select an option

Save pathologicalhandwaving/c14d21dc5065e922650d397644e850cc to your computer and use it in GitHub Desktop.
One-line Bash command to change the extensions of all files in a directory
# batch change extension
chgext() {
for file in *.$1 ; do mv $file `echo $file | sed "s/\(.*\.\)$1/\1$2/"` ; done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment