From c08d309793a7eb59cff86f2fe6767dc147bcb310 Mon Sep 17 00:00:00 2001 From: excelance Date: Thu, 20 Nov 2014 16:04:18 +0200 Subject: [PATCH] fix typo --- cheat/cheatsheets/convert | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cheat/cheatsheets/convert b/cheat/cheatsheets/convert index 20dbef0..1472f4a 100644 --- a/cheat/cheatsheets/convert +++ b/cheat/cheatsheets/convert @@ -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