5 lines
65 B
Bash
5 lines
65 B
Bash
for i in *
|
|
do
|
|
fold -sw 80 $i > $i.output
|
|
mv $i.output $i
|
|
done |