imapsync/W/learn/increaseline
Nick Bebout b7c835d670 1.670
2015-12-03 11:16:32 -06:00

9 lines
200 B
Bash
Executable file

#!/bin/sh
# Generate messages with line lenght from 10 ... up to 99 characters
for M in `count 10 99`; do
echo $M
{ echo Hello Guys; echo ; perl -e "print 'L' x ${M}" ; echo; echo END; }
done