#!/bin/sh # StopWatch.sh # 2008-07-09 # Chieh Cheng # http://www.CynosureX.com/ # GNU General Public License (GPL), Version 2, June 1991 start=`date` echo "${start}" while [ 1 ] do str=`date` printf "\r${str}" done