X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Ftext%2Fsmoove_lists.sh;h=01dbd22572964dc6e558d2e710099b9ca4d2719a;hb=9255a83646ec0c562c795c2c074d9b0b0eaa3dc0;hp=ab212c11ede1cebad17256dc7c215826fc4e3fc5;hpb=2952ccf47b80174880141a7ecfa122089f349b8d;p=feisty_meow.git diff --git a/scripts/text/smoove_lists.sh b/scripts/text/smoove_lists.sh index ab212c11..01dbd225 100644 --- a/scripts/text/smoove_lists.sh +++ b/scripts/text/smoove_lists.sh @@ -43,7 +43,7 @@ find . -maxdepth 1 -mindepth 1 -type d >"$tempfile" while read found; do # make a corresponding directory if there isn't one yet. if [ ! -d "$target/$found" ]; then - mkdir "$target/$found" + mkdir -p "$target/$found" fi # move all the files out of the source and into the target. mv "$found"/* "$target/$found/" @@ -52,7 +52,7 @@ done <"$tempfile" rm "$tempfile" # clean out any directories that we managed to move everything out of. -perl "$SHELLDIR/files/zapdirs.pl" $source +perl "$FEISTY_MEOW_SCRIPTS/files/zapdirs.pl" $source popd &>/dev/null