From 1031e3ae1d284a05f00cadaeeb801fe5cb0365ff Mon Sep 17 00:00:00 2001 From: Me Date: Wed, 14 Mar 2018 16:46:45 +0100 Subject: [PATCH] chg: use authcode file located in HOME dir. Signed-off-by: Me --- AAXtoMP3 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/AAXtoMP3 b/AAXtoMP3 index c743d07..6dcb82b 100755 --- a/AAXtoMP3 +++ b/AAXtoMP3 @@ -5,6 +5,7 @@ set -o errexit -o noclobber -o nounset -o pipefail codec=libmp3lame extension=mp3 mode=chaptered +authcodeFile="${HOME}/.authcode"; GREP=$(grep --version | grep -q GNU && echo "grep" || echo "ggrep") if ! [[ $(type -P "$GREP") ]]; then @@ -47,11 +48,11 @@ then shift fi -if [ ! -f .authcode ]; then +if [ ! -f "$authcodeFile" ]; then auth_code=$1 shift else - auth_code=`head -1 .authcode` + auth_code=`head -1 "$authcodeFile"` fi debug() {