Hello expert How to execute my own shell script through C program. waiting for reply.................. sachin
You can execute like this : system("mysh"); in unix operating system. mysh is the name of the shell script
in my experience, system() and execl() are the best ones to use. Make sure to raise their permissions before u execl them.