Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a variable of $i which is seconds in a shell script, and I am trying to convert it to 24 HOUR HH:MM:SS. Is this possible in shell?

share|improve this question
3  
what did you try? – shellter Nov 16 '12 at 19:26
Do you mean seconds since the beginning of the day? Or seconds since some date? – wallyk Nov 16 '12 at 19:29

3 Answers

up vote 6 down vote accepted

Here's a fun hacky way to do exactly what you are looking for =)

date -u -d @${i} +"%T"

Explanation:

  • The date command in shell allows you to specify a time, from string, in seconds since 1970-01-01 00:00:00 UTC, and output it in whatever format you specify.
  • The -u option is to display UTC time, so it doesn't factor in timezone offsets (since start time from 1970 is in UTC)
  • The -d part tells date to accept the time information from string instead of using now
  • The @${i} part is how you tell date that $i is in seconds
  • The +"%T" is for formatting your output. From the man date page: %T time; same as %H:%M:%S. Since we only care about the HH:MM:SS part, this fits!
share|improve this answer

If $i represents some date in second since the Epoch, you could display it with

  date -u -d @$i +%H:%M:%S

but you seems to suppose that $i is an interval (e.g. some duration) not a date, and then I don't understand what you want.

share|improve this answer

Another approach: arithmetic

i=6789
((sec=i%60, i/=60, min=i%60, hrs=i/60))
timestamp=$(printf "%d:%02d:%02d" $hrs $min $sec)
echo $timestamp

produces 1:53:09

share|improve this answer
may not have been what OP was after, but was exactly what I needed. Thank you. – Tim Kennedy Dec 31 '12 at 17:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.