mirror of
https://github.com/imapsync/imapsync.git
synced 2024-11-17 00:02:29 +01:00
10 lines
200 B
Bash
Executable File
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
|
|
|