Skip to content

Instantly share code, notes, and snippets.

@dipeshhkc
Created February 25, 2021 09:30
Show Gist options
  • Save dipeshhkc/b95cea7afd8b7c2e8fadeb6ee8ffb913 to your computer and use it in GitHub Desktop.
Save dipeshhkc/b95cea7afd8b7c2e8fadeb6ee8ffb913 to your computer and use it in GitHub Desktop.
12_name.gif -> name.gif
for f in *.gif ; do
if [[ "$f" == *"_"* ]] ; then
mv -v "$f" "${f#*_}"
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment