#!/bin/sh
# Inserting Control Characters into the Shell.
# To insert control characters (eg, ^G for Bell),
# press CTRL+V first, then CTRL+G

bell()
{
	# So what I actually typed here, 
	# (if by "^X" I mean "hold down CTRL and press 'x')
	# (and ignoring whitespace), was:
	# echo <space> " ^V ^G "
	# Same goes for the command prompt.
	
	echo ""
}


for i in 1 2 3 4 5
do
	bell
	sleep 1
done

