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:
0066228
)
removing commas from names now also.
author
Chris Koeritz
<fred@gruntose.com>
Wed, 15 May 2013 15:39:55 +0000
(11:39 -0400)
committer
Chris Koeritz
<fred@gruntose.com>
Wed, 15 May 2013 15:39:55 +0000
(11:39 -0400)
scripts/files/spaces_to_underscores.sh
patch
|
blob
|
history
diff --git
a/scripts/files/spaces_to_underscores.sh
b/scripts/files/spaces_to_underscores.sh
index b9682c6708809cd59dc61e93b843813a2d703e25..6c955611feab8647afd92eae8e53d5f329f0f8f0 100644
(file)
--- a/
scripts/files/spaces_to_underscores.sh
+++ b/
scripts/files/spaces_to_underscores.sh
@@
-12,7
+12,7
@@
fi
while [ $# -gt 0 ]; do
file="$1"; shift
- newname="$(echo "$file" | tr -s ' ' '_' | tr -d "\~'" | sed -e 's/\([0-9]\)_\./\1./g' | sed -e 's/_-_/-/' )"
+ newname="$(echo "$file" | tr -s ' ' '_' | tr -d "\~'
,
" | sed -e 's/\([0-9]\)_\./\1./g' | sed -e 's/_-_/-/' )"
if [ "$file" != "$newname" ]; then
# we've effected a name change, so let's actually do it.
echo "moving '$file' => '$newname' "