Operational Shell Scripting Interview Preparation Guide
Download PDF

Shell Scripting Interview Questions and Answers will guide us now that a shell script is a script written for the shell, or command line interpreter, of an operating system. It is often considered a simple domain-specific programming language. Typical operations performed by shell scripts include file manipulation, program execution, and printing text. Learn Shell Scripting with this Shell Scripting Interview Questions with Answers guide

30 Shell Scripting Questions and Answers:

Table of Contents:

Operational  Shell Scripting Job Interview Questions and Answers
Operational Shell Scripting Job Interview Questions and Answers

1 :: How do you write a while loop in shell?

while {condition} do {statement} done

2 :: How does a case statement look in shell scripts?

case {variable} in {possible-value-1}) {statement};; {possible-value-2}) {statement};; esac

4 :: How do you define a function in a shell script?

function-name() { #some code here return }

9 :: What’s the command to find out users on the system?

who

11 :: How do you write a for loop in shell?

for {variable name} in {list} do {statement} done

12 :: What’s a way to do multilevel if-else’s in shell scripting?

if {condition} then {statement} elif {condition} {statement} fi

14 :: How do you do Boolean logic operators in shell scripting?

! tests for logical not, -a tests for logical and, and -o tests for logical or.

15 :: How do you test for file properties in shell scripts?

-s filename tells you if the file is not empty, -f filename tells you whether the argument is a file, and not a directory, -d filename tests if the argument is a directory, and not a file, -w filename tests for writeability, -r filename tests for readability, -x filename tests for executability

18 :: How do you refer to the arguments passed to a shell script?

, and so on. {xtypo_info}$1, $2 and so on. $0 is your script name.{/xtypo_info} is your script name.

25 :: How do you count words, lines and characters in a file?

wc
Shell Scripting Interview Questions and Answers
30 Shell Scripting Interview Questions and Answers