diff --git a/bash/qr.bash b/bash/qr.bash index 4fc1863..579e8d8 100755 --- a/bash/qr.bash +++ b/bash/qr.bash @@ -10,7 +10,8 @@ qrencode -l H -t utf8 "${@:2}" # Stores QR code as $1.png (first argument) qrencode -l H -o "$1".png "${@:2}" - +# My stepfather wants jpg +convert "$1".png "$1".jpg # Prints details echo "Name: $1.png" echo "Content: ${@:2}"