./abcd.sh #this script is responsible to run a java code for creating a zip file in /tmp/abcd/
Some times abcd.sh script takes 30 seconds to create a zip file and some times it takes 60 seconds to create.
Since i don't have permission to edit abcd.sh file, I wrote this code to get pid for ./abcd.sh, but dont know how to get the pid for its child process.
./abcd.sh &
pid=$!
wait $pid
This code is waiting till the ./abcd.sh executes, but its not waiting till the zip file is complete.
Is there any way where it can wait till the zip file creates? my idea is, if we get to know the pid of zip file creation we can use wait $zipfilepid, but not sure how to get the pid for zip file creation.
.abcd.sh
sleep 60
I know sleep is an alternative for this, but i don't want to wait even if the zip file is created.
abcd.shso that it waits for the zip file to complete. You cannot reliably wait for a process that is not your child. – William Pursell Nov 20 '12 at 18:47&the script will wait automatically. – shiplu.mokadd.im Nov 20 '12 at 18:59./abcd.sh wait– phani Nov 20 '12 at 19:00&– Karoly Horvath Nov 20 '12 at 19:02