Last active
December 19, 2016 13:32
-
-
Save agusmakmun/a002c8a71980a1086aa267fd81e55ccb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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