UNIX Wrapper Script

How to execute wrappers script?

Questions by vijayp57

Showing Answers 1 - 4 of 4 Answers

sham2sushil

  • Nov 15th, 2010
 

Different methods to run the unix wrapper scripts .

./script_name.sh

 sh script_name.sh

 ksh script_name.sh

 sh -x script_name.sh

 ksh -x script_name.sh

 Running the script in background (put the & in last)

 ./script_name.sh &

 sh script_name.sh &

 or (Sending standard o/p to nohup.out and running the job in background )

 nohup ./script_name.sh &

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions