diff options
Diffstat (limited to 'replace-spaces-with-minus')
-rwxr-xr-x | replace-spaces-with-minus | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/replace-spaces-with-minus b/replace-spaces-with-minus new file mode 100755 index 0000000..13a74e6 --- /dev/null +++ b/replace-spaces-with-minus @@ -0,0 +1,6 @@ +#!/bin/sh + +# replace spaces in filenames with - +for f in *\ *; do + mv "$f" "${f// /-}"; +done |