3 lines
74 B
Plaintext
3 lines
74 B
Plaintext
|
#!/bin/bash
|
||
|
for file in *; do mv "$file" `echo $file | tr ' ' '_'` ; done
|