1
0
mirror of https://github.com/imapsync/imapsync.git synced 2024-11-17 00:02:29 +01:00
imapsync/W/learn/increaseline
Nick Bebout b7c835d670 1.670
2015-12-03 11:16:32 -06:00

10 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