ignoring tilde files now
authorFred T. Hamster <fred@gruntose.com>
Wed, 2 Apr 2025 13:37:01 +0000 (09:37 -0400)
committerFred T. Hamster <fred@gruntose.com>
Wed, 2 Apr 2025 13:37:01 +0000 (09:37 -0400)
we don't want to mess with these at all.

scripts/files/spacem.sh

index 05ec50e6c9292c2d7aff3f4c89efd1d272671bb0..2932fa72e3041847f540b6737cef63134540e061 100644 (file)
@@ -4,6 +4,12 @@ function spacem_out()
 {
   while [ $# -gt 0 ]; do
     arg="$1"; shift
+
+    if [[ $arg =~ ~* ]]; then
+echo "skipping tilde style name: '$arg'"
+      continue
+    fi
+
     if [ ! -f "$arg" -a ! -d "$arg" ]; then
       echo "=> did not find a file or directory named '$arg'."
       continue