Skip to content

Instantly share code, notes, and snippets.

@agusmakmun
Last active December 19, 2016 13:32
Show Gist options
  • Save agusmakmun/a002c8a71980a1086aa267fd81e55ccb to your computer and use it in GitHub Desktop.
Save agusmakmun/a002c8a71980a1086aa267fd81e55ccb to your computer and use it in GitHub Desktop.
# This method if the files has no extentions.
$ for file in *; do mv "$file" "$file.png"; done
# This method if the files has extentions before.
$ for file in *.jpg; do mv "$file" "$file.png"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment