#!/bin/ksh #List directories in blue using the vt100 terminal excape sequences. esc=`echo '\033'` #the escape character hide="$esc[?25l" #hide cursor show="$esc[?25h" #show cursor #\1 is the first 54 characters on each line that starts with d. #\2 is the name of the directory. #Surround the name of the directory with "begin blue" and "end blue". echo $hide sleep 5 echo $show exit 0