Compare commits

..

No commits in common. "2fc0372d9d050646a059094846bcbcd11e652814" and "76bad8af0b0d0823099b91c1d43544571c7a2097" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View File

@ -88,7 +88,6 @@ getDestDir() {
while [[ $part =~ / ]] while [[ $part =~ / ]]
do do
thispart="${part%%/*}" thispart="${part%%/*}"
thispart=${thispart//$'\n'/::AtOM:NewLine:SQL:Inline::}
if (( ${destinationascii["$destination"]} )) if (( ${destinationascii["$destination"]} ))
then then
echo "$thispart" >&${toascii[1]} echo "$thispart" >&${toascii[1]}
@ -101,7 +100,8 @@ getDestDir() {
fi fi
if ! [ -d "${destinationpath[$destination]}/$destdir" ] if ! [ -d "${destinationpath[$destination]}/$destdir" ]
then then
mkdir -p "${destinationpath[$destination]}/${destdir//::AtOM:NewLine:SQL:Inline::/$'\n'}" mkdir -p "${destinationpath[$destination]}/$destdir"
fi fi
destdir="${destdir//+(\/)//}" destdir="${destdir//+(\/)//}"
destdir=${destdir//$'\n'/::AtOM:NewLine:SQL:Inline::}
} }

View File

@ -55,11 +55,11 @@ getDestFile() {
destfile="${filename##*/}" destfile="${filename##*/}"
destfile="${destfile%.*}" destfile="${destfile%.*}"
fi fi
destfile=$(sanitizeFile "$destfile")
destfile=${destfile//$'\n'/::AtOM:NewLine:SQL:Inline::} destfile=${destfile//$'\n'/::AtOM:NewLine:SQL:Inline::}
if (( ${destinationascii["$destination"]} )) if (( ${destinationascii["$destination"]} ))
then then
echo "$destfile" >&${toascii[1]} echo "$destfile" >&${toascii[1]}
read -r -u${toascii[0]} destfile read -r -u${toascii[0]} destfile
fi fi
destfile=$(sanitizeFile "$destfile")
} }