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 are the different kinds of loops available in shell script?
What are the advantages of bash over all other shells?
What are the four fundamental components of every file system on linux?
There are three departments A,B and C.Write a query to display the names of all the persons( in departments other than A) who are paid higher than the person receiving the lowest salary in DEPT A
What is a program shell?
How to add some content in any file at some desired location without using VI or some other editor in UNIX
Create a bash shell script that reads a line from the user consisting of 5 words and then prints them out in reverse order. Name this script "reverse.sh"
What does egrep mean?
State the advantages of shell scripting?
what is tickets $ what low,medium,high priorite pls define time also
Write a script to print the first 10 elements of fibonacci series.
How to print pid of the current shell?