stable/licenses/wrap.sh

5 lines
65 B
Bash

for i in *
do
fold -sw 80 $i > $i.output
mv $i.output $i
done