#!/bin/bash

echo "This will appear stay here"
echo "Press ^C to abort...."

sleep 1
exec $0

#I could add a line here such as:
echo "Hmm, I won't ever appear"

exit 0
