summaryrefslogtreecommitdiff
path: root/src/scripts/nospac
diff options
context:
space:
mode:
Diffstat (limited to 'src/scripts/nospac')
-rwxr-xr-xsrc/scripts/nospac2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/scripts/nospac b/src/scripts/nospac
index d69003d..3dee5de 100755
--- a/src/scripts/nospac
+++ b/src/scripts/nospac
@@ -1,3 +1,5 @@
#!/bin/sh
+# Replace all the spaces in file names with "_" in the current working directory
+
for file in *; do mv "$file" `echo $file | tr ' ' '_'` ; done