Created
May 23, 2022 05:55
-
-
Save ozuma/b75b0399deb93bb828239d7318e11275 to your computer and use it in GitHub Desktop.
拡張子を取り除く、拡張子の変換
This file contains 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
#!/bin/bash | |
for filename in *.webp | |
do | |
convert $filename ${filename%.*}.png | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment