Script Execution


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Script Execution
# 1  
Old 09-08-2010
Script Execution

Hello all,

I generally get 6 or more files at location /usr/example.Files listed below
Code:
er 1 2 3 9.txt
er 2 2 3 9.txt
er 3 2 3 9.txt
er 4 2 3 9.txt
abc.next
del pa.txt
cr ad.txt
ps tr as er.txt

Now the issue is i need to transfer 2 files (one file is fixed called abc.next) at a time to a location /bin/sam and execute them one by one.For example see below
Code:
1st set for execution contains 
er 1 2 3 9.txt
abc.next
 
2nd set 
er 2 2 3 9.txt
abc.next
 
3rd set
er 3 2 3 9.txt
abc.next
 
and so on...

This is pretty manual process as i need to transfer 2 file from /usr/example to /bin/sam everytime and execute.

I need to automate this..

Any suggestion will be welcomed
# 2  
Old 09-08-2010
if the file names what you have written above will remain same ...
then you can do something like this :-

Code:
fofo = 0
for file in ls
do
fofo=`fofo +1`
if [[ `ls er $fofo 2 3 9.txt`
then
cp er $fofo 2 3 9.txt ./bin/sam
cp abc.net ./bin/sam
fi
done

i am assuming that the files that you are trying to send have a name like " er 1 2 3 9.txt" and they will remain in the same format apart from the first numeric variable being incrementing.
if u want it to automate it more than this. then you can put this script in cron and run after some continous intervals.
# 3  
Old 09-08-2010
As per the above script, do i have to simply run it at the prompt.
I mean will it pick first two files and then run it or what..
i didnt get it..

---------- Post updated at 03:46 PM ---------- Previous update was at 03:42 PM ----------

i mean what i do is transfer the 2 file from /usr/example to /bin/sam and then run my script so that it will process the two file and reflect the application and database.

After running my script the two file which were transferred are automatically deleted via my script from that location..

---------- Post updated at 03:53 PM ---------- Previous update was at 03:46 PM ----------

I will write the pattern again

transfer 1st set of files from /usr/example to /bin/sam
Code:
er 1 2 3 9.txt
abc.next

Then i will execute ok.ksh which will reflect app and database and delete these 2 files.

Next i will do is again transfer 2nd set of files from /usr/example to /bin/sam
Code:
er 2 2 3 9.txt
abc.next

Then again i will execute ok.ksh which will reflect app and database and delete these 2 files.
An so on.................

i need to automate this..
i wont put it in cron but need a script for the same..
# 4  
Old 09-08-2010
Do you mean something like this:
Code:
ls -rt /usr/example/er* | while read i
do 
  cp "$i" /usr/example/abc.next /bin/sam
  /bin/sam/ok.ksh
done

So that they get processed oldest first, or do you keep some kind of counter?
# 5  
Old 09-08-2010
you can run any of the above 2scripts. the one made by me or 1 made by scrutinizer.

copy these scripts in any of the files and then execute that file.
keep the script made by me or scrutnizer in /usr/example.

and lets say once you transfer the files to /bin/sam and then you have to run a script named db_del (which reads these 2 files and deletes it from directory) u can do something liek this....

Code:
fofo = 0
for file in ls
do
fofo=`fofo +1`
if [[ `ls er $fofo 2 3 9.txt`
then
cp er $fofo 2 3 9.txt ./bin/sam
cp abc.net ./bin/sam
/bin/sam/db_del.ksh
fi
done

and in scrutnizer case db=del = ok script is already running.
# 6  
Old 09-08-2010
@dazdseq Your script contains many many logic errors, syntax errors, false assumptions, omissions, and silly typing mistakes (e.g. extra space characters on line 1).
At a fundamental level, any script using the construct "for file in `ls`" will not work if any of the filenames contain space characters.



Scrutinizer's script looks ok and illustrates how best to deal with filenames containing space characters. It might need minor enhancement to delete the data files from the target directory ... unless that is done already in /bin/sam/ok.ksh .
# 7  
Old 09-09-2010
Now iam confused..what is to be done..

---------- Post updated at 11:07 AM ---------- Previous update was at 11:05 AM ----------

I hope the scenario is clear for everybody.
Can anyone re-write the whole script again pls....
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Script execution

I need to call a script if the month end falls on Saturday or Sunday (5 Replies)
Discussion started by: bala1985
5 Replies

2. Shell Programming and Scripting

Freezes up execution of the script

My script that I wrote is no longer running, but just freezing when I execute it. Before it was running and showing me where errors were, now when I execute it, nothing happens and i cant type anything into the command screen. The script was a looping script, what could be going on? (8 Replies)
Discussion started by: MJCreations
8 Replies

3. Solaris

Script on Solaris spawning 2 processes for one shell script execution

Hi, I am having a shell script on Solaris 10 which has a while loop as shown below. #!/usr/bin/ksh # while do sleep 60 done Name of the shell script is coldcentric.sh. I executed script /DATAWAREHOUSE/LOAD/Scripts/coldcentric.sh from a command task in Informatica worklow as... (3 Replies)
Discussion started by: chekusi
3 Replies

4. Shell Programming and Scripting

execution of a script

Hi i have a small script like this $ cat test.sh #!/usr/bin/sh name="ram" echo ${1} set 1 2 3 4 5 6 7 8 9 0 123 o870 echo $9 echo ${12} when i am trying to execute like below i am not getting the output jena samp_perl $ sh test.sh test.sh: This: not found (12 Replies)
Discussion started by: ragilla
12 Replies

5. Emergency UNIX and Linux Support

invoke one script based on previous script execution

I am database guy and not very good at shell scripts. I am seeking help to sharp my script coding. I have 5 scripts 1. master script. I use this one to call other four scripts to do database work. 2. db_backup_1 and log_backup_1 3. db_backup_2 and log_backup_2 in master script, I want to... (4 Replies)
Discussion started by: duke0001
4 Replies

6. UNIX for Advanced & Expert Users

SSH using shell script terminates the script execution

Hello, I am writing a shell script in which i do ssh to remote server and count the number of files there and then exit. After the exit the shell script terminates which i believe is expected behavior. Can some one suggest me a way where even after the exit the script execution resumes. ... (2 Replies)
Discussion started by: manaankit
2 Replies

7. Shell Programming and Scripting

Expect Issue Serial Forground Execution vs Concurrent Background Execution

I have an expect script that interrogates several hundred unix servers for both access and directories therein using "ssh user@host ls -l /path". The combination of host/path are unique but the host may be interrogated multiple times if there are multiple paths to test. The expect script is run... (2 Replies)
Discussion started by: twk
2 Replies

8. Shell Programming and Scripting

Script to carry-over the script execution to another system

The situation is like this. If I need to know the parameters of all the unix servers connected to a common network, is it possible to get all the parameter details of all the system with the help of a script written in one server?? Can a script be written like that ? Let me give some... (3 Replies)
Discussion started by: yuvanash
3 Replies

9. Shell Programming and Scripting

help on script execution

Hi, Please help me on the below code of line of what it actually does ${Script_dir}/scrip1.sh & export script1_pid=$! ${Scipt_dir}/script2.sh & export script2_pid=$! ${Scrip_dIR}/script3.sh & export script3_pid=$! wait ${script1_pid} //could u tell me wht this... (8 Replies)
Discussion started by: sussane
8 Replies

10. UNIX for Dummies Questions & Answers

pb with script execution

Hello, Can somebody tell me the differnce between a call of a ksh with the dot : >. script.ksh and the call without the dot: >script.ksh In my script I have writen a test for the number of parameters: if then echo 'Usage : '$0 exit 1 fi as my script doesn't need any... (3 Replies)
Discussion started by: Cecile
3 Replies
Login or Register to Ask a Question