diff --git a/daisy.source b/daisy.source index ddba9b3..bc354c6 100755 --- a/daisy.source +++ b/daisy.source @@ -314,7 +314,7 @@ function daisy_enc_multi() function daisy_dec() { data=$(cat ${1:-/dev/stdin} | sed -e 's/.*=\"//g' | grep -v "#" | tr -d '\"' | tr -d "'" | tr '-' '\n' ) - decoded=$(echo -e "$data" | cut -d "=" -f 1 | base64 --decode) + decoded=$(echo -e "$data" | cut -d "=" -f 1 | base64 -d) printf "$decoded" }