Sponsored Content
Top Forums Shell Programming and Scripting Running Multiple scripts based on file size. Post 302515057 by ahamed101 on Tuesday 19th of April 2011 12:25:19 AM
Old 04-19-2011
Try this
Code:
#!/bin/bash

srcloc=/bin/main/scripts/
chmod 777 1.sh
chmod 777 2.sh
chmod 777 3.sh

function err
{
  ret=$1
  scr=$2
  
  if [ $ret -ne 0 ]
  then
    echo "Error : $src. Exiting..."
    exit 1
  fi
}

$srcloc/1.sh
err "$?" "1.sh failed"

$srcloc/2.sh
err "$?" "2.sh failed"

fileSize=0
if [ -f $srcloc/blr_src.txt ]
then
  fileSize=`stat -c %s $srcloc/blr_src.txt >/dev/null 2>&1`
fi

if [ $fileSize -eq 0 ]
then
  err "1" "blr_src.txt is empty"
fi

$srcloc/3.sh
err "$?" "3.sh"

echo "master.sh executed successfully..."
exit 0

regards,
Ahamed

Last edited by Scott; 04-19-2011 at 04:03 AM..
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How to open multiple shells while the scripts keeps running.

Hello, I've tried for a while now to run a bash script that continues to the end, while opening new shells as needed. I've tried xterm -e "somecommand"; & xterm -e " somecommand"; I've also tried screen -S "somecommand"; & screen -S "somecommand"; All without any luck, they... (5 Replies)
Discussion started by: Closed_Socket
5 Replies

2. Shell Programming and Scripting

running multiple scripts

Hi all I have a requirement where I have a flow like Script1 script2 Script3 Script 4 Script 5 Script 6 script7 where script2 to script6 will... (3 Replies)
Discussion started by: nvuradi
3 Replies

3. Shell Programming and Scripting

multiple child scripts running in backgroud, how to use grep on the parent?

Hi I have a shell script A which calls another 10 shell scripts which run in background. How do i make the parent script wait for the child scripts complete, or in other words, i must be able to do a grep of parent script to find out if the child scripts are still running. My Code: ... (5 Replies)
Discussion started by: albertashish
5 Replies

4. Homework & Coursework Questions

Help running scripts in 1 file.

1. The problem statement, all variables and given/known data: Running different parts of the assignment together in 1 script 2. Relevant commands, code, scripts, algorithms: awk, nawk, bash, cp, cut, echo, expr, grep, join, mkdir, paste, rm, sort, sed, test, tr, true and false. 3. The... (0 Replies)
Discussion started by: bigubosu
0 Replies

5. Shell Programming and Scripting

The scripts not able to make the file to size 0, every times it go back to its original size

#!/bin/sh ########################################################################################################## #This script is being used for AOK application for cleaning up the .out files and zip it under logs directory. # IBM # Created #For pdocap201/pdoca202 .out files for AOK #1.... (0 Replies)
Discussion started by: mridul10_crj
0 Replies

6. Shell Programming and Scripting

Making use of multiple cores for running sed and awk scripts

Hi All, After reading that the sort command in Linux can be made to use many processor cores just by using a simple script which I found on the internet, I was wondering if I can use similar techniques for programs like the awk and sed? #!/bin/bash # Usage: psort filename <chunksize>... (7 Replies)
Discussion started by: shoaibjameel123
7 Replies

7. UNIX for Advanced & Expert Users

Running multiple php scripts into one php only, cron mail alert problem...

hi, while separated they produce the usual mail alert and i can see the output... if i write into the php script: <?php system('php -f /var/www/vhosts/domain.com/httpdocs/folder/script1.php'); system('php -f /var/www/vhosts/domain.com/httpdocs/folder/script2.php'); system('php -f... (0 Replies)
Discussion started by: 7stars
0 Replies

8. UNIX for Dummies Questions & Answers

Execution problem in running multiple scripts

hi all, I have 3 individual scripts to perform the task . 2nd script should run only after the 1st script and 3rd script must run only after first 2 scripts are executed successfully. i want to have a single script that calls all this 3 scripts .this single script should execute the 2nd script... (1 Reply)
Discussion started by: Rahul619
1 Replies

9. UNIX for Advanced & Expert Users

Running Multiple Scripts for different business date

Hi Team, I have the below 4 scripts which I will be running in sequential order. This run will start for today's business date. If all the 4 scripts are success for today that means script has ran succesfully. Howver if any one of these 4 scripts failed then it has to take the next... (1 Reply)
Discussion started by: Deena1984
1 Replies

10. Shell Programming and Scripting

Running Multiple scripts at a time

Hello! I have a scriptA.ksh and in this script I need to call script1.ksh, script2.ksh, script3.ksh, script4.ksh and script5.ksh. But want to run in two batches like 1st script1.ksh, script2.ksh, script3.ksh, once all 3 are completed then script4.ksh script5.ksh I have given the syntax... (1 Reply)
Discussion started by: karumudi7
1 Replies
DWARF_HASFORM(3)					   BSD Library Functions Manual 					  DWARF_HASFORM(3)

NAME
dwarf_hasform, dwarf_whatform, dwarf_whatform_direct -- query attribute forms LIBRARY
DWARF Access Library (libdwarf, -ldwarf) SYNOPSIS
#include <libdwarf.h> int dwarf_hasform(Dwarf_Attribute attr, Dwarf_Half form, Dwarf_Bool *ret, Dwarf_Error *err); int dwarf_whatform(Dwarf_Attribute attr, Dwarf_Half *retform, Dwarf_Error *err); int dwarf_whatform_direct(Dwarf_Attribute attr, Dwarf_Half *retform, Dwarf_Error *err); DESCRIPTION
Function dwarf_hasform() indicates whether the DWARF attribute denoted by argument attr has the attribute form specified by argument form. If the attribute has the specified form, then argument ret is set to a non-zero value, otherwise it is set to zero. If argument err is non- NULL, it will be used to return an error descriptor in case of an error. Function dwarf_whatform() sets the location specified by argument retform to the attribute form code for the DWARF attribute referenced by argument attr. If the attribute referenced by argument attr has an indirect form attribute, this function will return the final form for the attribute. If argument err is non-NULL, it will be used to return an error descriptor in case of an error. Function dwarf_whatform_direct() sets the location specified by argument retform to the attribute form code for the DWARF attribute refer- enced by argument attr. If the form is an indirect form, the function sets the location specified by argument retform to DW_FORM_indirect. If argument err is non-NULL, it will be used to return an error descriptor in case of an error. RETURN VALUES
These functions return DW_DLV_OK on success. In case of an error, these functions return DW_DLV_ERR and set argument err. ERRORS
These functions may fail with the following errors: [DW_DLE_ARGUMENT] Any of the arguments attr, ret, or retform was NULL. SEE ALSO
dwarf(3), dwarf_attr(3), dwarf_hasattr(3) BSD
May 22, 2010 BSD
All times are GMT -4. The time now is 09:42 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy