X-Git-Url: https://feistymeow.org/gitweb/?p=feisty_meow.git;a=blobdiff_plain;f=scripts%2Ffiles%2Fspacem.sh;h=b73a68c5a15e583fc5ee098179e103127206e030;hp=9b201c5cfb240fb5eaf5c0fa4d6f9ab2e55cf3bc;hb=370ee7d9c1e4e1f40ca521292517d89f89da6499;hpb=6e3c7be89d3519db08cb8fbadd1ef73580ffa44d diff --git a/scripts/files/spacem.sh b/scripts/files/spacem.sh index 9b201c5c..b73a68c5 100644 --- a/scripts/files/spacem.sh +++ b/scripts/files/spacem.sh @@ -4,7 +4,6 @@ function spacem_out() { while [ $# -gt 0 ]; do arg="$1"; shift -echo "arg is '$arg'" if [ ! -f "$arg" -a ! -d "$arg" ]; then echo "=> did not find a file or directory named '$arg'." continue @@ -16,7 +15,6 @@ echo "arg is '$arg'" intermediate_name="$(bash "$FEISTY_MEOW_SCRIPTS/files/replace_spaces_with_underscores.sh" "$arg")" local saw_intermediate_result=0 if [ -z "$intermediate_name" ]; then -echo no new intermed name reported # make sure we report something, if there are no further name changes. intermediate_name="'$arg'" else @@ -27,20 +25,14 @@ echo no new intermed name reported # here we rename the file to be lower case. actual_file="$(echo $intermediate_name | sed -e "s/'\([^']*\)'/\1/")" -echo actual file computed: $actual_file final_name="$(perl "$FEISTY_MEOW_SCRIPTS/files/renlower.pl" "$actual_file")" local saw_final_result=0 -echo temp final name is: $final_name if [ -z "$final_name" ]; then final_name="$intermediate_name" else final_name="$(echo $final_name | sed -e 's/.*=> //' )" saw_final_result=1 fi -echo intermed result=$saw_intermediate_result -echo intermed name=$intermediate_name -echo final result=$saw_final_result -echo final name=$final_name if [[ $saw_intermediate_result != 0 || $saw_final_result != 0 ]]; then # printout the combined operation results. @@ -52,7 +44,6 @@ echo final name=$final_name # this block should execute when the script is actually run, rather # than when it is just being sourced. if [[ $0 =~ .*spacem\.sh.* ]]; then -echo inside exec block for spacem source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh" exit_on_error "sourcing the feisty meow environment" spacem_out "${@}"