postmoogle/e2e/send-stress

8 lines
100 B
Bash
Executable file

#!/bin/bash
for i in {0..100..1}; do
echo "#${i}..."
ssmtp test@localhost < $1
done
echo "done"