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 |
Why is it called a shell?
How will you schedule a job that will run every month last day?(some months have 30 days,some 31 days,28,29 days)
Differentiate between ‘ and ” quotes.
give me some website where i can get unix and testing meterials
What is k shell?
How many prompts are available in a UNIX system?
Create a bash shell script that reads in a number from the user. If the number is 1, print out the date. If the number is 2, list the files in the current directory. If the number is 3, print out who is currently logged onto the system. If the number is anything else, print out an error message and exit. Name this script "various.sh"
What are the Different types of shells?
What will happen to my current process when I execute a command using exec?
Is shell scripting a programming language?
Write a command sequence to find all the files modified in less than 2 days and print the record count of each.
Explain how you Automate your application using Shell scripting.