summaryrefslogtreecommitdiff
path: root/scripts/nospac
blob: 3dee5de8dc4a3faa7abc5e22de43fdeaf135f470 (plain)
1
2
3
4
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