What are the three main forms of enabling debugging in a
shell script?
Answers were Sorted based on User's Feedback
Answer / neha c
set -vx
v:- verbose option(this option outputs every line of the
script onto the standard output console)
x:- this option substitutes every variable's value which is
used in the shell script.
To turn off the debugging option, use set +vx.
| Is This Answer Correct ? | 2 Yes | 0 No |
What is the use of "$#" in shell scripting?
Explain how you Automate your application using Shell scripting.
What is the default shell of solaris?
What are the different kinds of loops available in shell script?
Write a script to print the first 10 elements of fibonacci series.
How shell works?
How to get the last line from a file using just the terminal?
Is shell and terminal the same?
Give some situations where typing error can destroy a program?
What are the default permissions of a file when it is created?
c program the catches the ctrl-c(SIGINT) Signal for the first time and prints a output rather and exit on pressing Ctrl-C again
Which scripting language is best for automation?