Challenging task : script for mailing process completion timing report to users.


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Challenging task : script for mailing process completion timing report to users.
# 1  
Old 12-02-2010
Bug Challenging task : script for mailing process completion timing report to users.

Hi all,

This is my first post.
I am new to unix scripting.

My requirement is as follows :

We are using a financial backoffice application.
Now at the end of day we have send users a status report stating all timings of EOD processes for all countries.

I need timings for following :

1. Timings of file generation for countries.
2. EOD process start time AND end time - This we take by logging to unix .then accessing the backoffice application and then we make some option choices to get elapsed times.
But these timings are dynamic.
3. Once the files for all countries reach our server ,they are sftp to dstination server .We receive a mail in outlook regarding the timing when files reach these servers.we need to write these timings in this report and send it to users.

Are there any suggestion on how this complicated task can be accomplished.
please help if you have experience on the same task .
contact for any concerns.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

[e-mailing] send login pwd to several users

Hello, I would like to send logins and passwords to users. As input I have a file where there are the login, passwords and email addresses. Can you help me because I'm not a good scripter cordially cat maillist.txt$1 $2 $3 login1 password1 @mail1 login2 ... (2 Replies)
Discussion started by: amazigh42
2 Replies

2. UNIX for Advanced & Expert Users

Issue with tracking successful completion of Child process running in background

Hello All, I am using Linux. I have two scripts: inner_script.ksh main_wrapper_calling_inner.ksh Below is the code snippet of the main_wrapper_calling_inner.ksh: #!/bin/ksh ppids=() ---> Main array for process ids. fppids=() ---> array to capture failed process ids. pcnt=0 --->... (5 Replies)
Discussion started by: dmukherjee
5 Replies

3. Shell Programming and Scripting

How to determine the completion of a background process to trigger something else?

I've been thinking about a peculiar problem, and so far haven't been able to find out a convincing solution to that. To put it simply, I have a shell script (assume it to be parent_script.sh), calling another shell script (child_script.sh) 5 times, in nohup mode to be executed in the background.... (3 Replies)
Discussion started by: Aviktheory11
3 Replies

4. Shell Programming and Scripting

Timing a script

i have a very big script i have that i'd like to add a timeout to. this script runs on a several remote host. i update this script with timeout clause and then copy it over to all the hosts on which it is currently on. basically, i want the timeout to make the script abort/exit if it's... (1 Reply)
Discussion started by: SkySmart
1 Replies

5. UNIX for Dummies Questions & Answers

Background Process Completion

I have my unix machine configured to run locate.updatedb on login in the background and after it completes, when I run a command such as ls-- the console returns the results of ls and + Done sudo /usr/libexec/locate.updatedbIs there... (3 Replies)
Discussion started by: Prodiga1
3 Replies

6. UNIX for Dummies Questions & Answers

Script to check process completion

Hi, OS - Unix Iam doing the following: after login to the unix box 1. change directory 2. run a shell script "preinstall.sh" 3. This takes apprx 5 mins 4. after which i use to change permission of a file "installhub.sh" (this file is generated from the previous step). Is there anyway... (2 Replies)
Discussion started by: kenkanya
2 Replies

7. UNIX for Dummies Questions & Answers

process vs task

Hi, I am new to this forum and unix too. I have just started learning unix. As I was going through the first chapter, I read that unix is multitasking, multiprogramming, multiprocessing and multiuser OS. My question is: Is there any difference between a TASK and a PROCESS. How are PROCESS... (2 Replies)
Discussion started by: hana
2 Replies

8. Shell Programming and Scripting

Script to kill stranded/orphan process by users.

I have customers on our AIX/UNIX node startup a process that becomes stranded or orphaned and must be killed. I would like to create a script to check for these orphan processes and kill them. I can have cron run this job. The customers process will run and after 24 hours time out leaving an... (4 Replies)
Discussion started by: rjohnson
4 Replies

9. UNIX for Dummies Questions & Answers

difference between task and process

Hi, what is the difference between a task and a process. what is the difference between multitasking , multiprogrammnig and multiprocessing? Thanks in advance (6 Replies)
Discussion started by: ramyar
6 Replies
Login or Register to Ask a Question
explain_stat_or_die(3)					     Library Functions Manual					    explain_stat_or_die(3)

NAME
explain_stat_or_die - get file status and report errors SYNOPSIS
#include <libexplain/stat.h> void explain_stat_or_die(const char *pathname, struct stat *buf); DESCRIPTION
The explain_stat_or_die function is used to call the stat(2) system call. On failure an explanation will be printed to stderr, obtained from explain_stat(3), and then the process terminates by calling exit(EXIT_FAILURE). This function is intended to be used in a fashion similar to the following example: explain_stat_or_die(pathname, buf); pathname The pathname, exactly as to be passed to the stat(2) system call. buf The buf, exactly as to be passed to the stat(2) system call. Returns: This function only returns on success. On failure, prints an explanation and exits. SEE ALSO
stat(2) get file status explain_stat(3) explain stat(2) errors exit(2) terminate the calling process COPYRIGHT
libexplain version 0.52 Copyright (C) 2008 Peter Miller explain_stat_or_die(3)