InterviewSolution
Saved Bookmarks
| 1. |
How To Make A Shell Script Executable? |
|
Answer» USING the CHMOD command we can make a SHELL SCRIPT executable. Example is shown below : # chmod a+x myscript.sh Using the chmod command we can make a shell script executable. Example is shown below : # chmod a+x myscript.sh |
|