Hi Just shell script question. I want to manipulate dates and get diff of two variables. But result I want in hrs:min:sec. Start_Time=`date +%H%M%S` sleep 1 (Just for testing diff is 1) End_Time=`date +%H%M%S` TOTAL_Time=`echo "$End_Time - $Start_Time"|bc` echo $TOTAL_Time
But result I want in hrs:min:sec ????I want to be very simple don't want to use sed and awk. Thanks Balanand
