adspace


How do I run a shell script in unix?

Answer Posted / Mamta Yadav

To run a shell script, make it executable using `chmod +x script.sh`, and then execute it with either `./script.sh` or simply its name if the script is in your PATH.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can you edit a large file without opening it in unix?

988