Sponsored Content
Full Discussion: Help on Time elapsed?
Top Forums Shell Programming and Scripting Help on Time elapsed? Post 302369857 by smarty86 on Monday 9th of November 2009 09:00:45 PM
Old 11-09-2009
The thing is i dont know anything about perl. I just need to know how i can ignore saturdays and sundays!
 

10 More Discussions You Might Find Interesting

1. Programming

Displaying elapsed time...

I am trying to display the amount of time that it took for a command to run. I'm assuming that i have the correct code: ... else { printf("I am a child process and my pid is %d\n", getpid()); cout<<"Parameters are: "<<endl; for... (5 Replies)
Discussion started by: jj1814
5 Replies

2. Shell Programming and Scripting

Adding Elapsed time

I'm using the Bourne shell and trying to write a script that will add all the time that any particular user has been on the network for. I've used last-h | grep "username" | cut -c 58-62 to get the times. Then I wrote a script that takes the time and converts it into just minutes. Now I... (1 Reply)
Discussion started by: jrdnoland1
1 Replies

3. Shell Programming and Scripting

Calculate Elapsed Time

I'm looking for the cleanest way to calculate the time elapsed between two times in KSH. In minutes or in hours and minutes if it has been longer than 59 minutes. Here are some random examples: Example result: 25 Minutes or Example result: 1 Hour and 25 Minutes Example time format: ... (5 Replies)
Discussion started by: sysera
5 Replies

4. Shell Programming and Scripting

Need to calculate elapsed time

Hi there, How to calculate the elapsed time in minutes for a particular job run under unix. I tried the following $ ps -efo user,pid,etime,comm,args | grep myscript | grep -v grep | awk -F" " '{print $3}' OUTPUT: 01:02:49 I need to get this output in minutes. Can someone help me... (1 Reply)
Discussion started by: karthickrn
1 Replies

5. 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

6. Shell Programming and Scripting

elapsed time

Display the elapsed time $ export data_ini = `date +'%s'`; echo $data_ini 1292417961 $ export data_final = `date +'%s'`; echo $data_final 1292418079 $ ((temps = data_final - data_ini)); echo $temps 118 $ echo $((data_final - data_ini)) #total seconds 118 $ echo $(((data_final... (1 Reply)
Discussion started by: aika
1 Replies

7. Shell Programming and Scripting

Time elapsed since script started

Hi I want to know if there is anyway I can find out how long it has been since I started my script or total time it has been since my script is executing. Idea here is I want to check if my script is taking more than 30minutes to execute I want to kill that process. Thanks in advance. (1 Reply)
Discussion started by: dashing201
1 Replies

8. Shell Programming and Scripting

Help needed with elapsed time from text values

I'm extracting two time & date values from a log file, and I need a way to calculate the elapsed time between the two. The values are in this format: Feb 12 10:53:15 Feb 12 10:59:57 The difference is 6 minutes and 42 seconds Does anyone know if there is a way to do this? I've seen lots of... (4 Replies)
Discussion started by: peterv6
4 Replies

9. Shell Programming and Scripting

Compare two timestamps and print elapsed time

Hi, I am unable to Difference between two time stamps in Linux and display the total elapsed time . Source date: Aug 15, 2012 02:00:03 Target date: Aug 14, 2012 18:00:03 # based on the forums I am using the below function. Converted dates into this format Src_dt=20120814180003... (7 Replies)
Discussion started by: onesuri
7 Replies

10. UNIX for Advanced & Expert Users

Help in : sorting process by their elapsed time: HP-UX

What is the equivalent command of the below linux command would be in hp-ux UNIX95=1 ps -eo pid,start,stime,command Thanks a lot, (1 Reply)
Discussion started by: rveri
1 Replies
time(1) 						      General Commands Manual							   time(1)

NAME
time - Times the execution of a command SYNOPSIS
time [-p] command [argument...] The time command prints the elapsed time during the execution of a command, the time spent in the system, and the time spent in execution of the command on the diagnostic output system. Note The C shell has a built-in version of the time command. If you are using the C shell, and want to guarantee that you are using the command described here, you must specify the full path /usr/bin/time. See the csh(1) reference page for a description of the built-in command. STANDARDS
Interfaces documented on this reference page conform to industry standards as follows: time: XCU5.0 Refer to the standards(5) reference page for more information about industry standards and associated tags. OPTIONS
Writes the timing output to standard error. This is the default. OPERANDS
The name of a command to be executed. If command identifies any name specified as a special built in your applicable shell reference page, the results are undefined and unpredictable. The argument to be passed to command. See the appropriate reference pages for these values. This parameter may include flags and arguments expected by command. DESCRIPTION
The time command prints the elapsed time during the execution of a command, the time spent in the system, and the time spent in execution of the command on the diagnostic output system. Time is reported in seconds. The time command (with a different format) is also built into csh. NOTES
When time is used as part of a pipeline, the times reported are unspecified, except when it is the sole command within a grouping command in that pipeline. For example, the commands on the left are unspecified; those on the right report on utilities a and c, respectively. time a | b | c { time a } | b | c a | b | time c a | b | (time c) EXIT STATUS
The time command returns the following exit values if the command could not be invoked: An error occurred in the time command. The command specified by command was found but could not be invoked. The command specified by command could not be found. If the command was successfully invoked, the exit status of time is the exit status of command. EXAMPLES
To measure the time required to run a program, enter: time a.out This runs the program a.out and writes to the standard error output the amount of real, system, and user time that it uses: real 10.5 user 0.3 sys 3.6 To measure the time required by a complex command, enter: time sh -c 'complex-cmmand-line' This runs all of the commands, which may include pipelines, and returns the time information for the entire series of commands. ENVIRONMENT VARIABLES
The following environment variables affect the execution of time: Provides a default value for the internationalization variables that are unset or null. If LANG is unset or null, the corresponding value from the default locale is used. If any of the internationalization vari- ables contain an invalid setting, the utility behaves as if none of the variables had been defined. If set to a non-empty string value, overrides the values of all the other internationalization variables. Determines the locale for the interpretation of sequences of bytes of text data as characters (for example, single-byte as opposed to multibyte characters in arguments). Determines the locale for the for- mat and contents of diagnostic messages written to standard error. Determines the location of message catalogues for the processing of LC_MESSAGES. Determines the path used to locate command. SEE ALSO
Commands: csh(1), ksh(1), Bourne shell sh(1b), POSIX shell sh(1p) Functions: times(3) Standards: standards(5) time(1)
All times are GMT -4. The time now is 04:45 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy