8dc36d919f
Written in GNU Emacs
7 linhas
55 B
Bash
7 linhas
55 B
Bash
#!/bin/bash
|
|
|
|
for i in *
|
|
do
|
|
sed -i 's/ /\t/g' $i
|
|
done
|