The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

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 08:43 PM
Time Difference in seconds k_bijitesh UNIX for Advanced & Expert Users 1 01-16-2007 04:15 AM
how to display time in minutes n seconds... santy Shell Programming and Scripting 1 08-23-2006 10:18 AM
Unable to display the date-time in seconds on AIX me_haroon AIX 6 07-11-2006 09:18 AM
seconds to hh:mm:ss akrathi UNIX for Dummies Questions & Answers 2 10-19-2005 02:30 PM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 12-06-2005
Bhups Bhups is offline
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.
  #2 (permalink)  
Old 12-06-2005
blowtorch's Avatar
blowtorch blowtorch is offline Forum Advisor  
Supporter
  
 

Join Date: Dec 2004
Location: Singapore
Posts: 2,350
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
  #3 (permalink)  
Old 12-06-2005
Bhups Bhups is offline
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:-)...??
  #4 (permalink)  
Old 12-06-2005
Bhups Bhups is offline
Registered User
  
 

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

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

Join Date: Feb 2005
Location: Bangalore, India
Posts: 2,796
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 08:28 AM..
  #6 (permalink)  
Old 12-06-2005
Perderabo's Avatar
Perderabo Perderabo is offline Forum Staff  
Unix Daemon
  
 

Join Date: Aug 2001
Location: Ashburn, Virginia
Posts: 9,100
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....)
Sponsored Links
Closed Thread

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -4. The time now is 12:06 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language translation by Google.
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0