10 lines
153 B
Bash
10 lines
153 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
IFS=$'\n';
|
||
|
for f in `find .`; do
|
||
|
file=$(echo $f | tr [:blank:] '_')
|
||
|
[ -e $f ] && [ ! -e $file ] && mv "$f" $file;
|
||
|
done;
|
||
|
|
||
|
unset IFS
|