From: Bastian Dehn Date: Sat, 12 Sep 2026 09:54:03 +0000 (+0200) Subject: change option keep cover X-Git-Tag: v1.0.0^2~14 X-Git-Url: https://gitweb.hhaalo.de/?a=commitdiff_plain;h=718fcb48056764a47cbea37502e015e9f2f0a1a8;p=albentohandy.git change option keep cover --- diff --git a/albentohandy b/albentohandy index 8fdb4dd..fd363fb 100755 --- a/albentohandy +++ b/albentohandy @@ -22,7 +22,7 @@ SYNOPSIS OPTIONS -3 convert to mp3 - -c cover.jpg stehen lassen + -k keep cover.jpg -f convert to flac -h show this help -o convert to opus @@ -150,10 +150,10 @@ main() || errlog "missing MUSICPATH" \ || return $? - while getopts "3cfho" optname; do + while getopts "3kfho" optname; do case "$optname" in "3") format="mp3" ;; - "c") cover="true" ;; + "k") cover="true" ;; "f") format="flac" ;; "h") usage && return 0 ;; "o") format="opus" ;;