Sponsored Content
Full Discussion: Job Runtimes by AWK
Top Forums Shell Programming and Scripting Job Runtimes by AWK Post 302527917 by kumaran_5555 on Monday 6th of June 2011 03:55:50 AM
Old 06-06-2011
The awk you have referred uses different format, try this one,
Code:
user@tioman> (/home/user) $ cat time.awk
{
split($2,sdate,"/")
split($3,stime,":")
split($4,edate,"/")
split($5,etime,":")

s_secs=mktime(sdate[3]" "sdate[2]" "sdate[1]" "stime[1]" "stime[2]" "stime[3])

e_secs=mktime(edate[3]" "edate[2]" "edate[1]" "etime[1]" "etime[2]" "etime[3])

print $1,strftime("%T",e_secs-s_secs)


}
You have new mail in /var/spool/mail/user
user@tioman> (/home/user) $ awk -f time.awk test.txt
bname1 07:30:27
jobname2 07:40:55
jobname3 07:47:19
user@tioman> (/home/user) $

I have a different time zone set here, so my output has 7 hrs 30 mins plus in each one.

please post your output as well.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

killing unix job after the job process completes

Hi, Thanks in advance. i need to kill a unix background running job after that job process completes. i can kill a job by giving the following unix command kill -9 processid how to kill the job after the current process run gets completed ? Appreciate your valuable help. ... (1 Reply)
Discussion started by: dtazv
1 Replies

2. Solaris

killing a unix job after the job process gets completed

Hi, Thanks in advance. i need to kill a unix background running job after that job process completes. i can kill a job by giving the following unix command kill -9 processid how to kill the job after the current process run gets completed ? Appreciate your valuable help. Thanks... (7 Replies)
Discussion started by: dtazv
7 Replies

3. Shell Programming and Scripting

Job dependent on other job

Hi All I am trying to run one command ie grep but I want it should execute only after the completion of a shell script has finished. eg Following is my script : java -mx64m $JAVA_OPTS -Dant.home=$ANT_HOME -classpath $_CLASSPATH org.apache.tools.ant.Main -verbose -buildfile /opt/bea/wls... (4 Replies)
Discussion started by: pankajkrmishra
4 Replies

4. UNIX for Dummies Questions & Answers

How to insert child job under a box job?

I have this box job and it contains only one job under it which is to load a file. I want to insert a "File Watcher", "Copy File" to it? Have no clue how to do that...any help plzzz... (4 Replies)
Discussion started by: xejatt
4 Replies

5. Shell Programming and Scripting

Need logic for check automated Job work in awk or SED.

I have a Java program which will automatically trigger some scheduled job to update Db or some other work. I am tracking the jobs with log messages and finding out it is properly run or not. I want to write a script to capture it correctly on time. Say Job1 is running on 15, 30, and 45 every... (5 Replies)
Discussion started by: senthilkumar_ak
5 Replies

6. Shell Programming and Scripting

PL SQL Runtimes different in Shell script log

Hi, This run times recorded in UX shell script appears peculiar to me. The PL / SQL stored procedure is called through sqlplus from UNIX shell script and then a log is created with run times recorded. The first set has actually taken 6 Hrs but the recorded time indicates it is only 2 Hrs and... (1 Reply)
Discussion started by: Nanu_Manju
1 Replies

7. Advertise with Us

Looking for job

Hi, i just got laid off :D, not fun, but i have a very wierd feeling. I want to continue my cloud computing exciting work and I am looking for takers. A brief of my skills is 10 years exp in dev client server apps on unix platform using java/c++. 3 years of ruby. last one year of amazon ec2 and... (1 Reply)
Discussion started by: linuxpenguin
1 Replies

8. Shell Programming and Scripting

Script to Start a Job after finding the Old job completed

Hi Experts, I need a script advice to schedule 12 jobs ( SAS Codes execute back ground ). Algorithem: 1. Script checks first job. 2. Finds first job is done; invoke second job. 3. finds second job is done; invoke third job. .. Request you to please assist. (3 Replies)
Discussion started by: Jerald Nathan
3 Replies

9. Shell Programming and Scripting

autosys job configuration for job failure.

We need to configure autosys that when a job fails continously for 3 times, we need to call another job. Is this possible in Autosys, or can anyone advice on the alternative. (2 Replies)
Discussion started by: sangea
2 Replies

10. UNIX for Advanced & Expert Users

Autosys Job: Job did not start

I have submitted an autosys job and force start it. Autosys hit the job 4 times to restart but it did not start and finally I terminate the job. Any idea why the job did not start. Below is the code I executed. 1214 missun0ap /export/home/bzn97r/develop/dswi/jil$ sendevent -E FORCE_STARTJOB... (0 Replies)
Discussion started by: jnrohit2k
0 Replies
explain_stime_or_die(3) 				     Library Functions Manual					   explain_stime_or_die(3)

NAME
explain_stime_or_die - set system time and report errors SYNOPSIS
#include <libexplain/stime.h> void explain_stime_or_die(time_t *t); int explain_stime_on_error(time_t *t); DESCRIPTION
The explain_stime_or_die function is used to call the stime(2) system call. On failure an explanation will be printed to stderr, obtained from the explain_stime(3) function, and then the process terminates by calling exit(EXIT_FAILURE). The explain_stime_on_error function is used to call the stime(2) system call. On failure an explanation will be printed to stderr, obtained from the explain_stime(3) function, but still returns to the caller. t The t, exactly as to be passed to the stime(2) system call. RETURN VALUE
The explain_stime_or_die function only returns on success, see stime(2) for more information. On failure, prints an explanation and exits, it does not return. The explain_stime_on_error function always returns the value return by the wrapped stime(2) system call. EXAMPLE
The explain_stime_or_die function is intended to be used in a fashion similar to the following example: explain_stime_or_die(t); SEE ALSO
stime(2) set system time explain_stime(3) explain stime(2) errors exit(2) terminate the calling process COPYRIGHT
libexplain version 0.52 Copyright (C) 2009 Peter Miller explain_stime_or_die(3)
All times are GMT -4. The time now is 05:42 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy