From 06e2b0e5c3693638ed66240fdb862a4189ecc997 Mon Sep 17 00:00:00 2001 From: Bastian Dehn Date: Sun, 16 Jul 2017 15:51:48 +0200 Subject: [PATCH] fix: spelling errors --- albentohandy | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/albentohandy b/albentohandy index 6a7f60b..86d56c9 100755 --- a/albentohandy +++ b/albentohandy @@ -4,12 +4,12 @@ ### copy to other folder. It works on parallel, you can ### use it in a cluster with Parameter -S. -WORK="$(pwd)/WORK.$$" # temporary working directory +WORK="$(pwd)/work.$$" # temporary working directory SCRIPTPATH="/usr/bin" # path to flactomp3v2 and notify.sh script MUSICPATH="/tmp/musikpath" # flac collection directory # check exist config and scripts -# .albentohandy.conf: set SCRIPTPATH and MUISCPATH +# .albentohandy.conf: set SCRIPTPATH and MUSICPATH if [ -f $HOME/.albentohandy.conf ]; then source $HOME/.albentohandy.conf else @@ -98,7 +98,7 @@ addInfo "

$(cat "$albumlist" | sed 's/$/
/')

" # make symlinks of original flac's in working directory printf "\nPhase %02d of %02d: create symlinks of flac's to working directory %s\n" $((curphase++)) $phase "$WORK" for i in $(cat "$albumlist"); do - cp --recursive --symbolic-link $MUISCPATH/$i $WORK/ + cp --recursive --symbolic-link $MUSICPATH/$i $WORK/ done addInfo "

" -- 2.47.3