Sponsored Content
Full Discussion: Calculate Elapsed Time
Top Forums Shell Programming and Scripting Calculate Elapsed Time Post 52280 by Perderabo on Tuesday 15th of June 2004 07:49:29 AM
Old 06-15-2004
ksh has a built-in SECONDS variable. Just do:
orig=$SECONDS
some_command
((elasped=SECONDS-orig))
echo $elasped
 

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

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

4. Shell Programming and Scripting

Help on Time elapsed?

Hi All, I have 2 variables like SDATE and EDATE. Now for example i ll give you values for the above 2 variables. SDATE=11/08/09 11:22 EDATE=11/09/09 22:33 the values of the above variables are represented like this>>>>>> mm/dd/yy hh:mm Now I want to evaluate total time elapsed... (3 Replies)
Discussion started by: smarty86
3 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
GlusterFS(8)							   Gluster Inc. 						      GlusterFS(8)

NAME
GlusterFS - clustered file system SYNOPSIS
glusterfs [options] [mountpoint] DESCRIPTION
GlusterFS is a clustered file system, capable of scaling to several peta-bytes. It aggregates various storage bricks over Infiniband RDMA or TCP/IP and interconnect into one large parallel network file system. Storage bricks can be made of any commodity hardware, such as x86-64 server with SATA-II RAID and Infiniband HBA. GlusterFS is fully POSIX compliant file system. On client side, it has dependency on FUSE package, on server side, it works seemlessly on different operating systems. Currently supported on GNU/Linux and Solaris. OPTIONS
Basic options -f, --volfile=VOLUME-FILE File to use as VOLUME-FILE (the default is /etc/glusterfs/glusterfs.vol). -l, --log-file=LOGFILE File to use for logging. -L, --log-level=LOGLEVEL Logging severity. Valid options are TRACE, DEBUG, INFO, WARNING, ERROR and CRITICAL (the default is WARNING). -s, --volfile-server=SERVER Server to get the volume from. This option overrides --volfile option. Advanced options --debug Run in debug mode. This option sets --no-daemon, --log-level to DEBUG, and --log-file to console. -N, --no-daemon Run in the foreground. --read-only Make the file system read-only. -p, --pid-file=PIDFILE File to use as PID file. --volfile-id=KEY Key of the volume file to be fetched from the server. --volfile-server-port=PORT Port number of volfile server. --volfile-server-transport=TRANSPORT Transport type to get volume file from server (the default is socket). --volume-name=VOLUME-NAME Volume name to be used for MOUNT-POINT (the default is top most volume in VOLUME-FILE). --xlator-option=VOLUME-NAME.OPTION=VALUE Add/Override a translator option for a volume with the specified value. Fuse options --attribute-timeout=SECONDS Set attribute timeout to SECONDS for inodes in fuse kernel module (the default is 1). --entry-timeout=SECONDS Set entry timeout to SECONDS in fuse kernel module (the default is 1). --direct-io-mode=BOOL Enable/Disable the direct-I/O mode in fuse module (the default is enable). Miscellaneous Options -?, --help Display this help. --usageeew Display a short usage message. -V, --version Print the program version. FILES
/etc/glusterfs/*.vol, /etc/glusterd/vols/*/*.vol SEE ALSO
fusermount(1), mount.glusterfs(8), gluster(8) COPYRIGHT
Copyright(c) 2006-2011 Gluster, Inc. <http://www.gluster.com> 07 March 2011 Clustered File System GlusterFS(8)
All times are GMT -4. The time now is 11:52 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy