stable/licenses/wrap.sh

5 lines
65 B
Bash
Raw Normal View History

2014-08-17 12:47:29 +02:00
for i in *
do
fold -sw 80 $i > $i.output
mv $i.output $i
done