diff options
| -rwxr-xr-x | img2pdf.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,7 +13,7 @@ fi for img in $( echo `ls -v | egrep \."$ext"$` ) ; do echo Traitement de "$img" - convert "$img" "${img:0:-$(( 1 + ${#ext})) }.pdf" + img2pdf --output "${img//$ext/pdf}" "$img" done; if [ -e "$out" ] ; then |