From 718fcb48056764a47cbea37502e015e9f2f0a1a8 Mon Sep 17 00:00:00 2001 From: Bastian Dehn Date: Sat, 12 Sep 2026 11:54:03 +0200 Subject: [PATCH] change option keep cover --- albentohandy | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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" ;; -- 2.47.3