dropped weird escapes on rm
authorFred T. Hamster <fred@gruntose.com>
Sat, 4 Jan 2025 05:33:14 +0000 (00:33 -0500)
committerFred T. Hamster <fred@gruntose.com>
Sat, 4 Jan 2025 05:33:14 +0000 (00:33 -0500)
the \rm construct was displeasing to our eyes and finally had to be removed.
all delete operations are now going through safedel, as far as i know.

19 files changed:
production/example_apps/zippy_maps/scripts/clean_mapsdemo.sh
scripts/archival/search_arch.sh
scripts/buildor/gffs_builders.sh
scripts/buildor/refresh_gffs_build.sh
scripts/buildor/seek_all_source.sh
scripts/core/functions.sh
scripts/core/launch_feisty_meow.sh
scripts/core/reconfigure_feisty_meow.sh
scripts/files/squish_directories.sh
scripts/generator/jenkins_builder.sh
scripts/generator/minimize_feisty_meow.sh
scripts/rev_control/version_control.sh
scripts/site_avenger/shared_site_mgr.sh
scripts/system/common_sysadmin.sh
scripts/system/dump_log.sh
scripts/testing/squelch_unless_error.sh
scripts/wine/remake_wine_links.sh
testkit/library/helper_methods.sh
testkit/test_driver.sh

index afe3d4268c2fbb2b85c11ba32d2fa1f7d58a88c5..914fc4d7ed9e23529595bee6388b95bed989894e 100644 (file)
@@ -18,11 +18,11 @@ rpuffer . &>/dev/null
 if [ $? -ne 0 ]; then
   # it seems our old files are still conflicting this.
   if [ -f config/config_google.php ]; then
-    \rm -f config/config_google.php
+    rm -f config/config_google.php
     exit_on_error "removing old config for google"
   fi
   if [ -f config/app.php ]; then
-    \rm -f config/app.php
+    rm -f config/app.php
     exit_on_error "removing old config for app"
   fi
 
index fe0735f24642854b7cc0af84d0cc0eb2304fc260..0d55b2c7934467061757c45b9197f042ca33872b 100644 (file)
@@ -36,6 +36,6 @@ while read input_text; do
   if [ $? -eq 0 ]; then echo ==== Found pattern in $input_text ====; fi
 done <"$TMPFILE"
 
-\rm -f "$TMPFILE"
+rm -f "$TMPFILE"
 
 
index 170e9c83ac26556894a9047b068796e7bf2ad5d7..850a59a9a21faa0d533bc2b760c6373d2bd5c587 100644 (file)
@@ -30,7 +30,7 @@ function build_gffs()
   echo "Build starting at: $(date)"
 
   # clean up some things.
-  \rm -rf unit-test-reports
+  rm -rf unit-test-reports
 
   # build the trunk.
   ant -Dbuild.targetArch=64 build
index b2027bcd68f43f7bd6ec69866b019bbb6c04dde0..cff6a1c10088050f737d3859360b235a79db2681 100644 (file)
@@ -9,7 +9,7 @@ bash $GFFS_TOOLKIT_ROOT/library/zap_genesis_javas.sh
 export GFFS_LOGS="$HOME/.GenesisII"
 
 echo cleaning out the logs directory...
-\rm -f "$GFFS_LOGS"/*log*
+rm -f "$GFFS_LOGS"/*log*
 
 echo making a simple starting log file for container...
 if [ ! -d "$GFFS_LOGS" ]; then
index 600138b3b82d3c8a3cc8f985685ca77c00f6b93a..92ce4984d1d42cf7728ec065a66ceff9122aa408 100644 (file)
@@ -19,7 +19,7 @@ if [ -z "$SOURCES_FOUND_LIST" ]; then
   export SOURCES_FOUND_LIST="$(mktemp "$TMP/zz_temp_find_srcs.XXXXXX")"
 fi
 # clean up the file to start with.
-\rm $SOURCES_FOUND_LIST &>/dev/null
+rm $SOURCES_FOUND_LIST &>/dev/null
 
 for i in $find_src_parms; do
 #echo current dir is $i
index bcf50df6d185bf351174a3363498b353468926fa..012e54d6dbc37da2e06cf56ca96eb8b36c25c4b9 100644 (file)
@@ -166,7 +166,7 @@ if [ -z "$skip_all" ]; then
         local tmpfile="$(mktemp $TMP/aliasout.XXXXXX)"
         alias $varname | sed -e 's/.*=//' >$tmpfile
         echo "alias $varname=$(cat $tmpfile)"
-        \rm $tmpfile
+        rm $tmpfile
       elif [ -z "${!varname}" ]; then
         echo "$varname undefined"
       else
@@ -632,7 +632,7 @@ we will skip recustomization, but these other customizations are available:
     pushd "$FEISTY_MEOW_LOADING_DOCK" &>/dev/null
     if [ -h custom ]; then
       # there's an existing link, so remove it.
-      \rm custom
+      rm custom
     fi
     # make sure we cleaned up the area before we re-link.
     if [ -h custom -o -d custom -o -f custom ]; then
@@ -975,7 +975,7 @@ return 0
 
     # make a temp file to write to before we move file into place in bind.
     local new_version="/tmp/$(basename ${filename}).bkup-${RANDOM}" 
-    \rm -f "$new_version"
+    rm -f "$new_version"
     exit_on_error "cleaning out new version of file from: $new_version"
 
     local line
index cdd28ea1f6698dbff3e0febfc68f931b1b4c18d5..30430edffa20c13addf35a277b94f2cd64aea09d 100644 (file)
@@ -42,8 +42,8 @@ if [ ! -d "$FEISTY_MEOW_APEX" ]; then
   # wipe out the offending variable(s).
   unset FEISTY_MEOW_SCRIPTS FEISTY_MEOW_APEX
   # clean out any unfortunate wrongness that may exist in our generated areas.
-  if [ -d "$FEISTY_MEOW_LOADING_DOCK" ]; then \rm -rf "$FEISTY_MEOW_LOADING_DOCK"; fi
-  if [ -d "$FEISTY_MEOW_GENERATED_STORE" ]; then \rm -rf "$FEISTY_MEOW_GENERATED_STORE"; fi
+  if [ -d "$FEISTY_MEOW_LOADING_DOCK" ]; then rm -rf "$FEISTY_MEOW_LOADING_DOCK"; fi
+  if [ -d "$FEISTY_MEOW_GENERATED_STORE" ]; then rm -rf "$FEISTY_MEOW_GENERATED_STORE"; fi
   # also wipe any values from the variables pointing at generated stuff.
   unset FEISTY_MEOW_LOADING_DOCK FEISTY_MEOW_GENERATED_STORE
   echo "
index 3491beb88652145c437937bb23b8a306e04ae02a..425380922d82675e1ec4dd0859c427c725006183 100644 (file)
@@ -53,7 +53,7 @@ PERL5LIB=$PERLLIB
 #echo PERLLIB after modification is $PERLLIB
 
 # make toast out of generated files right away, but leave any custom scripts.
-\rm -f "$FEISTY_MEOW_LOADING_DOCK"/fmc_*
+rm -f "$FEISTY_MEOW_LOADING_DOCK"/fmc_*
 
 ## #no, old:
 ## if [ ! -d "$FEISTY_MEOW_LOADING_DOCK/custom" ]; then
index 01c818ea990104518ae2f8d67cad6d0d11ea3bdd..a9f3b0e87828c82bea2a8312a148c5b85c400b88 100644 (file)
@@ -22,7 +22,7 @@ if [ ${#dirs[@]} -eq 0 ]; then
   find $dir -mindepth 1 -maxdepth 1 -type d -exec echo "dirs+=(\"{}\");" ';' >$tempfile
   source "$tempfile"
 #echo dirs default to: ${dirs[@]}
-  \rm -f $tempfile
+  rm -f $tempfile
 fi
 
 # takes a directory name as an argument and sucks the directory
index 8a65f24018fb0f0ef15f4352b3eb81aa99035e30..255496db41138feac8d732b741bf56d95f3ab2ac 100644 (file)
@@ -15,7 +15,7 @@ fi
 
 export RUN_ALL_TESTS=true
 # clean up any old home storage paths.
-\rm -rf "$feisty_path/home_store".*
+rm -rf "$feisty_path/home_store".*
 # set home folder to a new home_store.random folder, for anything that
 # feisty meow needs to store under $HOME.
 export HOME="$(mktemp -d "$feisty_path/home_store.XXXXXX")"
index d19076a768403e9e1a21fd2fb0395659e79c2b8e..b1e5470d5ba5c20d35e122591108f982a2b6dbd2 100644 (file)
@@ -11,15 +11,15 @@ echo "Cleaning up feisty meow generated files..."
 
 pushd $FEISTY_MEOW_GENERATED_STORE
 
-\rm -rf logs clam_tmp temporaries/*
+rm -rf logs clam_tmp temporaries/*
 
 pushd runtime
 
-\rm -rf install/*
+rm -rf install/*
 
 pushd binaries
 
-\rm -rf *.a *.library test_*
+rm -rf *.a *.library test_*
 
 popd
 popd
index b1aa88eca8de4207d9b3ee40ec9665afd3214d74..e4294bfcd1f55136f16fc6144ce2843d305e8a55 100644 (file)
@@ -524,7 +524,7 @@ function generate_rev_ctrl_filelist()
   local sortfile=$(mktemp /tmp/zz_checkin_sort.XXXXXX)
   sort <"$tempfile" >"$sortfile"
   echo "$sortfile"
-  \rm "$tempfile"
+  rm "$tempfile"
 }
 
 # iterates across a list of directories contained in a file (first parameter).
index 98481c085728245a11bc831b9a2a7af2d150ef19..b6a28ae55cd447b367eacf0e0f7ec4d2d9733be2 100644 (file)
@@ -405,7 +405,7 @@ function composer_repuff()
       echo "** FAILED: Database migrations for avcore.  Check log file in: $logfile"
       # we keep going, because some sites aren't ready for this yet.
     else
-      \rm "$logfile"
+      rm "$logfile"
       echo "Database for avcore migrated."
     fi
   fi
@@ -465,12 +465,12 @@ function create_site_links()
     # link 'public' to webroot.
     if [ -L public ]; then
       # public is a symlink.
-      \rm public
+      rm public
       exit_on_error "Removing public directory symlink"
     elif [ -d public ]; then
       # public is a folder with default files.
 #hmmm: is that safe?
-      \rm -rf public
+      rm -rf public
       exit_on_error "Removing public directory and contents"
     fi
 
index 1213bdc9bff607ba49f4a4de7e15d5180552ae61..d4cc328fb0652911bfe93bcc9ada06816df020cb 100644 (file)
@@ -304,7 +304,7 @@ function disable_site()
     echo "Please consult the apache error logs for more details."
     exit 1
   fi
-  \rm "$outfile"
+  rm "$outfile"
 }
 
 # turns on the config file we create above for apache.
@@ -324,7 +324,7 @@ function enable_site()
     echo "Please consult the apache error logs for more details."
     exit 1
   fi
-  \rm "$outfile"
+  rm "$outfile"
 }
 
 # restarts the apache2 service.
index 14a2ffdaa286f9c5d809932bf0b9f9c462660fd4..3b2be2f772bde70d0c9a694a5fa32fc67069eaf0 100644 (file)
@@ -28,7 +28,7 @@ function assemble_log_file()
   done
 
   cat "$logdump"
-  \rm -f "$logdump"
+  rm -f "$logdump"
 }
 
 
index f9fdf01bb186e92d3441c34809e8c22101dfcd04..d72adcab3e0b3396947fecc66690bd47406bf822 100644 (file)
@@ -30,7 +30,7 @@ if [ $retval != 0 ]; then
 fi
 
 # clean up.
-\rm "$newout" "$newerr"
+rm "$newout" "$newerr"
 
 # pass along the error code we saw, whether success or failure, so that this command has same
 # exit result as the original would have.
index 012f636d0e20cba6a3076731736669db4be976b2..de623e6b4c77780aaa95e48555bf76b6bd6793cc 100644 (file)
@@ -13,7 +13,7 @@ if [ ! -L "My Documents" -o ! -L "Desktop" ]; then
   exit 1
 fi
 
-\rm "Desktop" "My Documents" "My Pictures" "My Videos" "My Music"
+rm "Desktop" "My Documents" "My Pictures" "My Videos" "My Music"
 
 if [ ! -d ~/linx/wine_goods ]; then
   mkdir ~/linx/wine_goods
index 6b0329ae20783f10aa1355f937458e4fbcea90fb..27449b389e36254b0a44625e4aeef582fda44b96 100644 (file)
@@ -45,7 +45,7 @@ function readable_date_string()
         local tmpfile="$(mktemp $TMP/aliasout.XXXXXX)"
         alias $varname | sed -e 's/.*=//' >$tmpfile
         echo "alias $varname=$(cat $tmpfile)"
-        \rm $tmpfile
+        rm $tmpfile
       elif [ -z "${!varname}" ]; then
         echo "$varname undefined"
       else
@@ -135,7 +135,7 @@ function run_any_command()
   cat "$my_output" >> "$CONGLOMERATED_TESTKIT_OUTPUT"
   echo "=======" >> "$CONGLOMERATED_TESTKIT_OUTPUT"
   # and now remove the tiny individual log file so we don't litter.
-  \rm -f "$my_output"
+  rm -f "$my_output"
   return $retval
 }
 
index 50193b26bf12fd6cbcc348d69fc567147ad4106c..1db37e58577efccc587557f2e161c47b8b1c1a35 100755 (executable)
@@ -44,7 +44,7 @@ fi
 ##############
 
 # clean up any conglomerated log file.
-\rm -f "$CONGLOMERATED_TESTKIT_OUTPUT"
+rm -f "$CONGLOMERATED_TESTKIT_OUTPUT"
 
 ##############