1
0
mirror of https://github.com/imapsync/imapsync.git synced 2024-11-17 00:02:29 +01:00
imapsync/W/learn/longline
Nick Bebout 7d2043f95f 1.584
2014-02-13 11:34:20 -06:00

11 lines
274 B
Bash
Executable File

#!/bin/sh
# Generate messages with line lenght of 10000 11000 ... up to 99000 characters
for M in `count 10 99`; do
echo $M
{ echo Hello Guys; echo ; perl -e "print 'L' x ${M}000" ; echo; echo END; } \
| mail.mailutils -s "line of ${M}000 char" tata@localhost.
done