Sponsored Content
Full Discussion: getting time in mili seconds
Top Forums UNIX for Dummies Questions & Answers getting time in mili seconds Post 91825 by blowtorch on Tuesday 6th of December 2005 02:37:54 AM
Old 12-06-2005
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
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

how to display time in minutes n seconds...

Hi all, may i know how to display time in minutes and seconds(may be milliseconds and even smaller that ) in shell scripts.... (1 Reply)
Discussion started by: santy
1 Replies

2. UNIX for Advanced & Expert Users

Time Difference in seconds

It is required to calculate time difference in seconds between epoch time (19700101 00:00:00) and any given date time (e.g. 20010214 14:30:30). Is there any command in unix to get it? Thanks in adv. (1 Reply)
Discussion started by: k_bijitesh
1 Replies

3. UNIX for Dummies Questions & Answers

Real time of a clock for every 60 seconds in unix

hi can any one guide me on how to display real time of a clock in unix for every 60 seconds (2 Replies)
Discussion started by: ramnadh_babu
2 Replies

4. Shell Programming and Scripting

File creation time in seconds

Hi All, Cany any one help me in solving this.. Problem statement: I have a requirement to find the time from which there are no files created in a given directory. For this I am assuming that I need to get the file creation time in seconds, then the current time in seconds using `date +%s`.... (7 Replies)
Discussion started by: chary
7 Replies

5. Shell Programming and Scripting

Time difference in seconds

date1=$(date +"%H:%M:%S") date2=$(date +"01:00:54") diff=$date2-$date1 echo $diff How to get the time difference in seconds. (4 Replies)
Discussion started by: sandy1028
4 Replies

6. Shell Programming and Scripting

Get Current Time in Seconds Perl

hi guys, i need to know how to get the current date/time in seconds and i want to be able to do this in a one liner. like say for instance, if want to get what the time is right now, i'll issue a command like this: ## perl -e ' print scalar(localtime(time + 0)), "\n"' Tue Jul 13 17:45:50... (4 Replies)
Discussion started by: SkySmart
4 Replies

7. Shell Programming and Scripting

Elapsed time in seconds in awk

I am trying to get the ellapsed time in seconds in the body of the awk script. I use unix date to get the time. It works in BEGIN {} but not in the body {} of awk. Any ideas? $ cat a BEGIN { "date +%s" | getline x print x } { "date +%s" | getline y print y } $ echo "one line" |... (3 Replies)
Discussion started by: arturas123
3 Replies

8. Shell Programming and Scripting

Get how much time process has been running in seconds

I use this command to get the time elapsed for a process ps -eo pid,pcpu,pmem,user,args,etime,cmd --sort=start_time | grep perl It gives in format 19990 0.0 0.0 user /usr/bin/php 5-09:58:51 /usr/bin/php I need in seconds. Please use CODE tags for sample input and output as well... (2 Replies)
Discussion started by: anil510
2 Replies

9. Shell Programming and Scripting

Time in seconds on AIX 4.3.2.0

Hi to everybody again i Need your help, i wasting hours but can't find a solutuin for my Problem. I am not an expert with AIX script programming. I have a csh script and i need the time in seconds but since i have an old AIX the Option -%s doesnot exist with the date command. I seach in Google... (13 Replies)
Discussion started by: Nadielosabra
13 Replies

10. Shell Programming and Scripting

Converting seconds to time

I have a list of time spans in seconds, and want to compute the time span as hh:mm:nn I am coding in bash and have coded the following. However, the results are wrong as "%.0f" rounds the values. Example: ftm: 25793.5 tmspan(hrs,min,sec): 7.16 429.89 25793.50 hh: 7 mm: 10 ss:... (2 Replies)
Discussion started by: kristinu
2 Replies
MH-ALIAS(5)							     [nmh-1.5]							       MH-ALIAS(5)

NAME
mh-alias - alias file for nmh message system SYNOPSIS
any nmh command DESCRIPTION
This describes both nmh personal alias files and the global alias file for nmh mail delivery, the file /etc/nmh/MailAliases It does not describe aliases files used by the message transport system. Each line of the alias file has the format: alias : address-group or alias ; address-group or < alias-file or ; comment where: address-group := address-list | < file | = UNIX-group | + UNIX-group | * address-list := address | address-list, address Continuation lines in alias files end with `' followed by the newline character. "Alias-file" and "file" are UNIX file names. UNIX-group is a group name (or number) from /etc/group. An address is a "simple" Inter- net-style address. Througout this file, case is ignored, except for file names. If the line starts with a `<', then the file named after the `<' is read for more alias definitions. The reading is done recursively, so a `<' may occur in the beginning of an alias file with the expected results. If the address-group starts with a `<', then the file named after the `<' is read and its contents are added to the address-list for the alias. If the address-group starts with an `=', then the file /etc/group is consulted for the UNIX-group named after the `='. Each login name occurring as a member of the group is added to the address-list for the alias. In contrast, if the address-group starts with a `+', then the file /etc/group is consulted to determine the group-id of the UNIX-group named after the `+'. Each login name occurring in the /etc/passwd file whose group-id is indicated by this group is added to the address-list for the alias. If the address-group is simply `*', then the file /etc/passwd is consulted and all login names with a userid greater than some magic number (usually 200) are added to the address-list for the alias. In match, a trailing "*" on an alias will match just about anything appropriate. (See example below.) An approximation of the way aliases are resolved at posting time is (it's not really done this way): 1) Build a list of all addresses from the message to be delivered, eliminating duplicate addresses. 2) If this draft originated on the local host, then for those addresses in the message that have no host specified, perform alias resolu- tion. 3) For each line in the alias file, compare "alias" against all of the existing addresses. If a match, remove the matched "alias" from the address list, and add each new address in the address-group to the address list if it is not already on the list. The alias itself is not usually output, rather the address-group that the alias maps to is output instead. If "alias" is terminated with a `;' instead of a `:', then both the "alias" and the address are output in the correct format. (This makes replies possible since nmh aliases and personal aliases are unknown to the mail transport system.) Since the alias file is read line by line, forward references work, but backward references are not recognized, thus, there is no recur- sion. Example Alias File: </etc/nmh/BBoardAliases sgroup: fred, fear, freida b-people: Blind List: bill, betty; fred: frated@UCI UNIX-committee: <unix.aliases staff: =staff wheels: +wheel everyone: * news.*: news The first line says that more aliases should immediately be read from the file /etc/nmh/BBoardAliases. Following this, "fred" is defined as an alias for "frated@UCI", and "sgroup" is defined as an alias for the three names "frated@UCI", "fear", and "freida". The alias "b-people" is a blind list which includes the addresses "bill" and "betty"; the message will be delieved to those addresses, but the message header will show only "Blind List: ;" (not the addresses). Next, the definition of "UNIX-committee" is given by reading the file unix.aliases in the users nmh directory, "staff" is defined as all users who are listed as members of the group "staff" in the /etc/group file, and "wheels" is defined as all users whose group-id in /etc/passwd is equivalent to the "wheel" group. Finally, "everyone" is defined as all users with a user-id in /etc/passwd greater than 200, and all aliases of the form "news.<anything>" are defined to be "news". The key thing to understand about aliasing in nmh is that aliases in nmh alias files are expanded into the headers of messages posted. This aliasing occurs first, at posting time, without the knowledge of the message transport system. In contrast, once the message trans- port system is given a message to deliver to a list of addresses, for each address that appears to be local, a system-wide alias file is consulted. These aliases are NOT expanded into the headers of messages delivered. HELPFUL HINTS
To use aliasing in nmh quickly, do the following: 1) In your .mh_profile, choose a name for your alias file, say "aliases", and add the line: Aliasfile: aliases 2) Create the file "aliases" in your nmh directory. 3) Start adding aliases to your "aliases" file as appropriate. FILES
/etc/nmh/MailAliases global nmh alias file PROFILE COMPONENTS
Aliasfile: For a default alias file SEE ALSO
ali(1), send(1), whom(1), group(5), passwd(5), conflict(8), post(8) CONTEXT
None BUGS
Although the forward-referencing semantics of mh-alias files prevent recursion, the "< alias-file" command may defeat this. Since the num- ber of file descriptors is finite (and very limited), such infinite recursion will terminate with a meaningless diagnostic when all the fds are used up. Forward references do not work correctly inside blind lists. MH.6.8 11 June 2012 MH-ALIAS(5)
All times are GMT -4. The time now is 05:48 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy