From f0b3f8037b75a331e4e9df9ba6f26fc7e44041c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Darm=C3=BCntzel?= Date: Wed, 9 Jan 2019 15:47:49 +0100 Subject: [PATCH] Fixed a 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