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/sh | |
mogrify -colorspace Gray -format png *.png |
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/zsh | |
if [[ ! -e output ]] | |
then | |
echo creating output directory | |
mkdir output | |
else | |
echo clearing output folder | |
rm -rf output | |
echo creating output directory | |
mkdir output |