diff options
Diffstat (limited to 'src/scripts/nospac')
-rwxr-xr-x | src/scripts/nospac | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/scripts/nospac b/src/scripts/nospac deleted file mode 100755 index 3dee5de..0000000 --- a/src/scripts/nospac +++ /dev/null @@ -1,5 +0,0 @@ -#!/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 |