projects
/
feisty_meow.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
63e562f
)
ignoring tilde files now
author
Fred T. Hamster
<fred@gruntose.com>
Wed, 2 Apr 2025 13:37:01 +0000
(09:37 -0400)
committer
Fred 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
patch
|
blob
|
history
diff --git
a/scripts/files/spacem.sh
b/scripts/files/spacem.sh
index 05ec50e6c9292c2d7aff3f4c89efd1d272671bb0..2932fa72e3041847f540b6737cef63134540e061 100644
(file)
--- a/
scripts/files/spacem.sh
+++ b/
scripts/files/spacem.sh
@@
-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