swapped out the 'line' separator printing method into the core, since it's actually...
authorChris Koeritz <fred@gruntose.com>
Sun, 4 Sep 2016 17:16:34 +0000 (13:16 -0400)
committerChris Koeritz <fred@gruntose.com>
Sun, 4 Sep 2016 17:16:34 +0000 (13:16 -0400)
customizing/fred/fred_common.alias
scripts/core/functions.sh

index 743634a647f83704ea59ec209fa38ac491f3d7a8..77f4e48d7801bda18a55d8d90c45f4a072c4b722 100644 (file)
@@ -9,18 +9,3 @@ define_yeti_alias unmoo='sudo umount /z/stuffing ; sudo umount /z/walrus ; sudo
 # load in the gffs build scripts.
 source "$FEISTY_MEOW_SCRIPTS/buildor/gffs_builders.sh"
 
-# just shows a separator line for an 80 column console, or uses the first
-# parameter as the number of columns to expect.
-function line()
-{
-  count=$1; shift
-  if [ -z "$count" ]; then
-    count=80
-  fi
-  echo
-  for ((i=0; i < $count - 1; i++)); do
-    echo -n "="
-  done
-  echo
-  echo
-}
index 21d9d04716beb91107c1993d33cced0bf29203de..0d1be4af851bc38239a1c9c672f6ecfe7b43893d 100644 (file)
@@ -551,6 +551,29 @@ return 0
 
   ##############
 
+  # just shows a separator line for an 80 column console, or uses the first
+  # parameter as the number of columns to expect.
+  function separator()
+  {
+    count=$1; shift
+    if [ -z "$count" ]; then
+      count=79
+    fi
+    echo
+    for ((i=0; i < $count - 1; i++)); do
+      echo -n "="
+    done
+    echo
+    echo
+  }
+  # alias for separator.
+  function sep()
+  {
+    separator $*
+  }
+
+  ##############
+
   function function_sentinel() { return 0; }
   
   if [ ! -z "$SHELL_DEBUG" ]; then echo "feisty meow function definitions done."; fi