removed < > and " from names also.
authorChris Koeritz <fred@gruntose.com>
Sat, 21 Sep 2013 17:12:22 +0000 (13:12 -0400)
committerChris Koeritz <fred@gruntose.com>
Sat, 21 Sep 2013 17:12:22 +0000 (13:12 -0400)
scripts/files/spaces_to_underscores.sh

index 66823e199dd4de80a3b3aa8a5f9c019f68ce56ba..8c4696d8f224422f64bac0f98030923fe8421b90 100644 (file)
@@ -12,7 +12,7 @@ fi
 
 while [ $# -gt 0 ]; do
   file="$1"; shift
-  newname="$(echo "$file" | tr A-Z a-z | tr -s ' ' '_' | tr -d "][\\\~',:?" | sed -e 's/\([0-9]\)_\./\1./g' | sed -e 's/_-_/-/' )"
+  newname="$(echo "$file" | tr A-Z a-z | 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'  "