stuffed the recustomize function back in, since if it is a separate shell script...
authorChris Koeritz <fred@gruntose.com>
Sat, 17 Sep 2016 22:26:08 +0000 (18:26 -0400)
committerChris Koeritz <fred@gruntose.com>
Sat, 17 Sep 2016 22:26:08 +0000 (18:26 -0400)
scripts/core/functions.sh
scripts/core/recustomize.sh [deleted file]

index b883b47024d61e1a956caa7047c2b055790b298f..72aa777ec9c833b00a348807e3922cad90a1d902 100644 (file)
@@ -11,6 +11,8 @@ if [ $? -eq 0 ]; then
     echo "skipping function definitions, because already defined."
   fi
   skip_all=yes
+else
+  skip_all=
 fi
 
 if [ -z "$skip_all" ]; then
@@ -74,7 +76,7 @@ if [ -z "$skip_all" ]; then
           echo "$varname=${!varname}"
         fi
       fi
-    done
+    done | sort
     IFS="$HOLDIFS"
   }
 
@@ -368,6 +370,44 @@ if [ -z "$skip_all" ]; then
     nechung
   }
 
+  # copies a set of custom scripts into the proper location for feisty meow
+  # to merge their functions and aliases with the standard set.
+  function recustomize()
+  {
+    user="$1"; shift
+    if [ -z "$user" ]; then
+      # use our default example user if there was no name provided.
+      user=fred
+    fi
+    if [ ! -d "$FEISTY_MEOW_APEX/customizing/$user" ]; then
+      echo "The customization folder provided for $user should be:"
+      echo "  '$FEISTY_MEOW_APEX/customizing/$user'"
+      echo "but that folder does not exist.  Skipping customization."
+      return 1
+    fi
+    regenerate >/dev/null
+    pushd "$FEISTY_MEOW_LOADING_DOCK/custom" &>/dev/null
+    incongruous_files="$(bash "$FEISTY_MEOW_SCRIPTS/files/list_non_dupes.sh" "$FEISTY_MEOW_APEX/customizing/$user" "$FEISTY_MEOW_LOADING_DOCK/custom")"
+    
+    #echo "the incongruous files list is: $incongruous_files"
+    # disallow a single character result, since we get "*" as result when nothing exists yet.
+    if [ ${#incongruous_files} -ge 2 ]; then
+      echo "cleaning unknown older overrides..."
+      perl "$FEISTY_MEOW_SCRIPTS/files/safedel.pl" $incongruous_files
+      echo
+    fi
+    popd &>/dev/null
+    echo "copying custom overrides for $user"
+    mkdir -p "$FEISTY_MEOW_LOADING_DOCK/custom" 2>/dev/null
+    perl "$FEISTY_MEOW_SCRIPTS/text/cpdiff.pl" "$FEISTY_MEOW_APEX/customizing/$user" "$FEISTY_MEOW_LOADING_DOCK/custom"
+    if [ -d "$FEISTY_MEOW_APEX/customizing/$user/scripts" ]; then
+      echo "copying custom scripts for $user"
+      \cp -R "$FEISTY_MEOW_APEX/customizing/$user/scripts" "$FEISTY_MEOW_LOADING_DOCK/custom/"
+    fi
+    echo
+    regenerate
+  }
+
   # generates a random password where the first parameter is the number of characters
   # in the password (default 20) and the second parameter specifies whether to use
   # special characters (1) or not (0).
diff --git a/scripts/core/recustomize.sh b/scripts/core/recustomize.sh
deleted file mode 100644 (file)
index 896e9f0..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/bin/bash
-
-# copies a set of custom scripts into the proper location for feisty meow
-# to merge their functions and aliases with the standard set.
-
-
-source "$FEISTY_MEOW_SCRIPTS/core/functions.sh"
-
-#  function recustomize()
-#{
-
-user="$1"; shift
-if [ -z "$user" ]; then
-  # use our default example user if there was no name provided.
-  user=fred
-fi
-if [ ! -d "$FEISTY_MEOW_APEX/customizing/$user" ]; then
-  echo "The customization folder provided for $user should be:"
-  echo "  '$FEISTY_MEOW_APEX/customizing/$user'"
-  echo "but that folder does not exist.  Skipping customization."
-  return 1
-fi
-regenerate >/dev/null
-pushd "$FEISTY_MEOW_LOADING_DOCK/custom" &>/dev/null
-incongruous_files="$(bash "$FEISTY_MEOW_SCRIPTS/files/list_non_dupes.sh" "$FEISTY_MEOW_APEX/customizing/$user" "$FEISTY_MEOW_LOADING_DOCK/custom")"
-
-#echo "the incongruous files list is: $incongruous_files"
-# disallow a single character result, since we get "*" as result when nothing exists yet.
-if [ ${#incongruous_files} -ge 2 ]; then
-  echo "cleaning unknown older overrides..."
-  perl "$FEISTY_MEOW_SCRIPTS/files/safedel.pl" $incongruous_files
-  echo
-fi
-popd &>/dev/null
-echo "copying custom overrides for $user"
-mkdir -p "$FEISTY_MEOW_LOADING_DOCK/custom" 2>/dev/null
-perl "$FEISTY_MEOW_SCRIPTS/text/cpdiff.pl" "$FEISTY_MEOW_APEX/customizing/$user" "$FEISTY_MEOW_LOADING_DOCK/custom"
-if [ -d "$FEISTY_MEOW_APEX/customizing/$user/scripts" ]; then
-  echo "copying custom scripts for $user"
-  \cp -R "$FEISTY_MEOW_APEX/customizing/$user/scripts" "$FEISTY_MEOW_LOADING_DOCK/custom/"
-fi
-echo
-regenerate
-#}
-
-