How does a case statement look in shell scripts?
Answer / chaitanya
case {variable} in {possible-value-1}) {statement};; {possible-value-2}) {statement};; esac
| Is This Answer Correct ? | 0 Yes | 0 No |
How do you remove a file?
How do you refer to the arguments passed to a shell script?
How do you count words, lines and characters in a file?
How do you do Boolean logic operators in shell scripting?
How do you find out the number of arguments passed to the shell script?
How do you stop a process?
How do you test for file properties in shell scripts?
How do you define a function in a shell script?
What are PIDs?
How do you do number comparison in shell scripts?
How do you fire a process in the background?
How do you write a for loop in shell?