#!/bin/sh

echo STDERR: Start 1>&2
cal
sleep 2
echo STDERR: `date` 1>&2
sleep 2
cal `date -d +1month +"%m %y"`
echo '===== done ====='