added separators for readability
authorChris Koeritz <fred@gruntose.com>
Thu, 15 Dec 2016 05:17:20 +0000 (00:17 -0500)
committerChris Koeritz <fred@gruntose.com>
Thu, 15 Dec 2016 05:17:20 +0000 (00:17 -0500)
customize/fred/scripts/curies_musix_wand.sh

index e2e353cc00b5aff96ab79f2e0300f62f791b96da..3a5fe7cc97caeb1173712e5936b73efe2a27a260 100644 (file)
@@ -2,6 +2,8 @@
 
 # this script is meant to be run on curie with our super alpha prime source of music plugged in.
 
+source "$FEISTY_MEOW_SCRIPTS/core/functions.sh"
+
 #hmmm: add the goodness around these like the nice updater.
 
 if [[ ! ( $(hostname) =~ .*curie.* ) ]]; then
@@ -13,18 +15,24 @@ fi
 # synch our local copy on curie with the music drive, source of all goodness.
 function get_music_from_alpha_site()
 {
+  sep
   echo "getting musix and basement from fred music prime device"
   rsync -av /media/fred/fredmusicprime/musix/* /z/musix/
   rsync -av /media/fred/fredmusicprime/basement/* /z/basement/
+  sep
+  echo
 }
 
 # updates the music on a remote host to our current local copy on curie.
 function update_musix_pile()
 {
+  sep
   local host="$1"; shift
   echo "$host: synching musix and basement"
   rsync -avz /z/musix/* ${host}:/z/musix/ 
   rsync -avz /z/basement/* ${host}:/z/basement/ 
+  sep
+  echo
 }
 
 # make sure the local machine, curie, is in good shape.