1
0
mirror of https://github.com/cheat/cheat.git synced 2025-05-21 07:36:04 +02:00

Merge pull request from hutchison/master

Fixed a typo.
This commit is contained in:
Chris Allen Lane 2019-01-11 14:02:39 -05:00 committed by GitHub
commit bec516b30a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -15,5 +15,5 @@ convert original-image.jpg -resize 100x converted-image.png
for file in `ls original/image/path/`;
do new_path=${file%.*};
new_file=`basename $new_path`;
convert $file -resize 150 conerted/image/path/$new_file.png;
convert $file -resize 150 converted/image/path/$new_file.png;
done