Skip to content

Instantly share code, notes, and snippets.

@glwinsor
Created January 29, 2020 19:27
Show Gist options
  • Save glwinsor/fc6b300f22b0cc227cb38386ff48d567 to your computer and use it in GitHub Desktop.
Save glwinsor/fc6b300f22b0cc227cb38386ff48d567 to your computer and use it in GitHub Desktop.
Bulk replace file extensions from .txt to .gbk
# Rename all *.txt to *.text
for f in *.txt; do
mv -- "$f" "${f%.txt}.gbk"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment