InterviewSolution
Saved Bookmarks
| 1. |
How To Debug A Shell Script? |
|
Answer» A shell script can be DEBUG if we EXECUTE the script with ‘-X’ option ( sh -x myscript.sh). Another WAY to debug a shell script is by using ‘-NV’ option (sh -nv myscript.sh). A shell script can be debug if we execute the script with ‘-x’ option ( sh -x myscript.sh). Another way to debug a shell script is by using ‘-nv’ option (sh -nv myscript.sh). |
|