Created
February 24, 2016 10:47
-
-
Save paranoidjk/2f6e3624b8b2d5e213cb to your computer and use it in GitHub Desktop.
osx 将当前文件夹以及子文件夹所有.png 修改为.jpg
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
| find . -name "*.png"|sed 's/.png//'|xargs -n1 -I {} mv {}.png {}.jpg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment