The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
Google UNIX.COM


UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !!

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
Ticks in seconds. mig28mx HP-UX 1 06-26-2007 05:43 PM
Time Difference in seconds k_bijitesh UNIX for Advanced & Expert Users 1 01-16-2007 12:15 AM
how to display time in minutes n seconds... santy Shell Programming and Scripting 1 08-23-2006 07:18 AM
Unable to display the date-time in seconds on AIX me_haroon AIX 6 07-11-2006 06:18 AM
seconds to hh:mm:ss akrathi UNIX for Dummies Questions & Answers 2 10-19-2005 11:30 AM

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 12-05-2005
Registered User
 

Join Date: Dec 2005
Posts: 23
Question getting time in mili seconds

hi all UNIX Gurus,
this is my first post...so i posting this with great expectations...hoping to get the similar replies...

my question is....

need to get timestamp with millisecond in UNIX. Date command gives Year,month day, hour,minute and second but it does not give millisecond.

Any help in this will be appreciated.

thanks
Bhups.
Reply With Quote
Forum Sponsor
  #2 (permalink)  
Old 12-05-2005
blowtorch's Avatar
Supporter
 
Join Date: Dec 2004
Location: Singapore
Posts: 2,323
Welcome to the forums. Please search the forums before asking questions as many questions have already been answered before. Here is a post that will give you the time in microseconds. You can easily convert that to milliseconds.

Cheers
Reply With Quote
  #3 (permalink)  
Old 12-06-2005
Registered User
 

Join Date: Dec 2005
Posts: 23
thanks ppl....i actully checked the questions/replies but cudnt find ne answer to my query.....
actully i wanted to have a script/function in UNIX......n not "C" to do the same job....ie get mili seconds out of date (system date)....

ne more suggestions ppl:-)...??
Reply With Quote
  #4 (permalink)  
Old 12-06-2005
Registered User
 

Join Date: Dec 2005
Posts: 23
HEY Perderabo....

cum to the rescue sir ....a beginner conjures ur help ...???
Reply With Quote
  #5 (permalink)  
Old 12-06-2005
vino's Avatar
Supporter (in vino veritas)
 

Join Date: Feb 2005
Location: Bangalore, India
Posts: 2,643
Quote:
Originally Posted by Bhups
need to get timestamp with millisecond in UNIX. Date command gives Year,month day, hour,minute and second but it does not give millisecond.
As I understand, you need a timestamp with millisecond precision.

Works with GNU date.

Code:
sh-2.05b$ cat bhups.ksh
#! /bin/ksh
epoch=$(date +%F-%l-%M-%S-)$(( $(date +%N) / 1000000 ))
echo $epoch
sh-2.05b$ ./bhups.ksh 
2005-12-06- 4-22-35-195
vino

Last edited by vino; 12-06-2005 at 04:28 AM.
Reply With Quote
  #6 (permalink)  
Old 12-06-2005
Perderabo's Avatar
Unix Daemon
 

Join Date: Aug 2001
Location: Washington DC Area
Posts: 8,356
Quote:
Originally Posted by Bhups
cum to the rescue sir ....a beginner conjures ur help ...???
You can't squeeze blood from a stone. The standard unix date command doesn't do milliseconds. Posix says: "The resolution of the system clock is unspecified.", but they make it clear elsewhere that a resolution of at least one second is required. Posix does demand that the system clock system calls supply an interface that supports microseconds. But you may not write a portable unix program that needs milliseconds. But as a practical matter, all modern systems will have at least millisecond resolution. But you won't find a standard unix utiliity that supports milliseconds. So you need another program to call from your shell script. Either GNU date or that little utility in the linked thread will do. And don't expect it to work well on any real old unix systems. In fact, even on a modern computer, several milliseconds may occur between the time your script obtains the milliseconds and communicates the timestamp to the outside world. Scripts need to fork and exec external programs to do stuff. That is not conducive to millisecond resolution.You may need to write your program in completely in C and/or use realtime extentions.

(Hmmmm: Vino is dividing the output of %N by 1000000 which implies that %N returns nanoseconds. I'll have to look into that. It's not obvious how to get nanoseconds....)
Reply With Quote
Google UNIX.COM
Reply

Thread Tools
Display Modes




All times are GMT -7. The time now is 03:12 AM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited.
The UNIX and Linux Forums Content Copyright ©1993-2008 The CEP Blog All Rights Reserved -Ad Management by RedTyger Visit The Global Fact Book

Content Relevant URLs by vBSEO 3.2.0