Please enable JavaScript to view the comments powered by Disqus.

Top 20 Shell Scripting Interview Questions for Devops

Akshad Modi
Vaibhav Umarvaishya

Last updated 04/04/2025


Top 20 Shell Scripting Interview Questions for Devops

You have heard of shell scripting before, right? 

The shell script is a computer program or command-line interpreter that is specially designed to be run by the Unix shell.

So the best part about writing a shell script is the commands and syntax are exactly similar to those that were directly entered at the command line. The programmers don’t need to switch to a totally different syntax, like they would have done while working with a different language or while using a compiled language.

Writing a shell script happens faster than writing equivalent code in other programming languages. While working on a shell script, you’ll have added advantages like easy program or file selection, quick start, and interactive debugging. A shell script also helps in providing a sequencing and decision-making linkage around existing programs, and for moderately sized scripts, the absence of a compilation step is an advantage.

Now you understand why Shell Scripting is important in the life of a programmer. Hence, it is only obvious that interviewers will love to question you about it. So, what might the Interview questions of Shell scripting be? Let’s check that out!

Interview questions for unix shell scripting

1. What is Shell?

Ans:The shell is a command-line interpreter that translates commands entered by the user while converting them into a language understandable by the kernel. The shell interprets a command typed in at the terminal, and calls the program that you want.

2. What is a Shell Script? Can you name some of its advantages?

Ans:A shell script is a command-containing text-file that contains commands in the order of their execution time. Shell scripts perform several operations like printing text, file manipulation, and program execution.

The two main advantages of shell scripting are:

  • It allows you to develop your own custom OS with relevant features that best suits your needs best.
  • It allows designing software applications according to their respective platforms.

3. What are the different types of variables used in Shell Script?

Ans:A shell script has two types of variables:

  • System-defined variables
  • User-defined variables

4. What are the different types of commonly used shells on a typical Linux system?

Ans:There are two primary kinds of shells that can be used in a typical Linux system:

  • Bourne Shell
  • C-Shell

5. How do you create a shortcut in Linux?

Ans:Creating a shortcut in Linux can be done through the links present in Linux OS:

Hard Link:They are linked to the inode of the file and must be on the same file system as the file. If you delete the original file, it does not affect the hard link.

Soft Link:They are linked to the file name and can belong to a different file system as well. If you delete the original file, the soft link becomes inactive.

6. Tell us something about the Super Block in Shell scripting.

Ans:A SuperBlock is a program that contains a record of specific file systems.

Characteristics of a particular file system, like block size, the empty and filled blocks and their respective counts, the size and location of the inode tables, the disk block map, usage information, and the size of the block groups, can be found in a superblock.

7. What is GUI scripting?

Ans:GUI is used to control a computer and its applications. GUI scripting can support different applications and heavily depends on the operating system.

8. What are the various stages of a Linux process that it passes through?

Ans:A Linux process generally has four stages:

  • Waiting
  • Running
  • Stopped
  • Zombie

9. What is the difference between break and continue commands?

Ans:The break is a simple way to escape out of a loop in progress. The break command can be used to exit out from any loop, including while and until loops.

On the other hand, Continue is responsible for the present iteration of the loop to exit, instead of the entire loop.

10. What is the significance of the Shebang line in Shell Scripting?

Ans:The Shebang line is usually found at the top of the script,e.g.#!/bin/sh. This line provides information about the location of the engine. This engine is usually the one executing the script.

11. How to pass an argument to a script?

Ans:Arguments are passed through this command:

#!/bin/shct $1

12. How to use arguments in a Script?

Ans:Arguments can be used with the help of this command:

#!/bin/shcp $1 $2

13. How to calculate the number of passed arguments?

Ans:The number of passed arguments can be calculated with this command:

#!/bin/shecho "Number of Parameters passed:$#"

14. How to get script name inside a script?

Ans:To get a script inside a script, you need to use this command:

!/bin/shecho "Script Name:$0"

15. How to check if the previous command was run successfully?

Ans:To check the success of the previous command you need to use this logic:

#!/bin/shvar=$?if var=0
thenecho "Script was Run successfully"elseecho "Script was unsuccessful"fi

16. How to get the last line from a file using just the terminal?

Ans:To get the last line from a file using the terminal, you need to use this command:

tail -1 

17. How to get the first line from a file using just the terminal?

Ans:To get the first line from a file using just the terminal, this following command is used:

head -1 

18. How to get the 3rd element or column from each line from a file?

Ans:To get the 3rd element from each line, we use this command:

#!/bin/shawk '{print $3}' $1

19. How to write a function?

Ans:  #!/bin/shfunction example {echo "Hello Learner"}

20. Write down the Syntax for all the loops in Shell Scripting.

Ans:There are three kinds of loops for Shell Scripting- For Loop, Until loop, and While Loop. Their syntaxes are mentioned below:

For Loop:for var in word1 word2 ... wordNdoStatement(s) to be executed for every word.doneWhile Loop:while commanddoStatement(s) to be executed if the command is truedoneUntil Loop:until commanddoStatement(s) to be executed until command is truedone

Conclusion:

For its user-friendly nature, Shell scripting is adored across all industries. Once you are confident about answering the above questions, you’ll have a number of job opportunities handy. Be it a developer, a cloud admin, an AWS architect, Shell Scripting is useful for all professions.

Wonder how shell scripting can be applied to the professions mentioned above? Check out our website, apply for the courses suitable for your career choice, and we will teach you all of it!

Topic Related Post
About Author
Vaibhav Umarvaishya

As a Cloud Engineer and AWS Solutions Architect Associate at NovelVista, I specialized in designing and deploying scalable and fault-tolerant systems on AWS. My responsibilities included selecting suitable AWS services based on specific requirements, managing AWS costs, and implementing best practices for security. I also played a pivotal role in migrating complex applications to AWS and advising on architectural decisions to optimize cloud deployments.

SUBMIT ENQUIRY

* Your personal details are for internal use only and will remain confidential.

Upcoming Events
ITIL Logo ITIL

Every Weekend

AWS Logo AWS

Every Weekend

DevOps Logo DevOps

Every Weekend

Prince2 Logo PRINCE2

Every Weekend