Today in old-school unix.
This is how I forwarded 2358 messages messages from unix mailbox to another account
for k in `seq 0 2357`;
do
echo 'forward another@account.org' | s-nail -f mbox
done
Also forwarding from now on is done by having .forward file in my home directory with the destination email account.
#unix #linux #mail