40 Scripting Interview Questions & Answers [For Freshers & Experienced]
By Rohit Sharma
Updated on Mar 10, 2025 | 17 min read | 15.9k views
Share:
For working professionals
For fresh graduates
More
By Rohit Sharma
Updated on Mar 10, 2025 | 17 min read | 15.9k views
Share:
Table of Contents
For those of you who use any of the major operating systems regularly, you will be interacting with one of the two most critical components of an operating system—a shell. So, what is Shell? It is both an interactive command language as well as a scripting language. Shell is the interface that connects the kernel and the user. A kernel, on the other hand, is an intermediary between the hardware and the operating system. The moment a user starts the terminal or logs in, you activate the shell.
A Shell is a command-line interpreter or a complete environment designed to run commands, shell scripts, and programs. Once you feed commands into the shell, it will execute the program based on your input. When a user enters the command, the shell communicates it to the kernel. Upon execution, the output is displayed to the user. More than one shell can run simultaneously in a system, but only one kernel.
If you're preparing for scripting interview questions, understanding how the shell works, its role in command execution, and its interaction with the kernel is essential. Many shell scripting interview questions focus on shell scripting fundamentals, commands, and real-world use cases, making it crucial to master these concepts.
Shell scripting is a programming language used for automating and executing tasks on a Unix-like operating system. Shell scripts, as the name indicates, they are written in plain text formats that help in executing a diverse range of tasks such as:
Essentially, it translates the input commands and converts them into a Kernel-compatible language. A Shell Script refers to a list of commands in a program run by the Unix Shell. The script includes comments defining the commands in order of their execution sequence.
Shell Scripting is an open-source computer program. It runs on the Unix/Linux shell and writes commands for the shell to execute. It doesn’t matter whether the sequence of commands is lengthy or repetitive; the program helps simplify it into a single script, making it easy to store and execute. A shell script may be one of the following- Bourne shell, C shell (CSH), Korn shell (KSH), and GNU Bourne-Again shell (BASH).
You may wonder, “Why should I concern myself with Shell Scripting?” The simple answer is- to increase efficiency through automation and remove mundane and repetitive tasks from your work schedule. The plain text file, or shell script, contains one or more command lines and can be executed rather than running manually. It reduces the manual effort that goes into programming. Additionally, it can help with system monitoring and taking routine backups. Shell Scripting assists in adding new functionalities to the shell, as well.
Thinking about opting for a career in Shell Scripting? Are you wondering what are some of the possible Unix Shell Scripting interview questions? If the introduction makes you want to know more about Shell Scripting, keep scrolling till the end – we’ve compiled a list of Shell Scripting interview questions and answers to help kickstart your learning process! If you want to learn more about data science, check out our data science courses.
1 .What are the advantages of Shell Scripting?
The greatest benefits of Shell Scripting are:
2. What are Shell variables?
Shell variables form the core part of a Shell program or script. The variables allow Shell to store and manipulate information within a Shell program. Shell variables are generally stored as string variables.
3. List the types of variables used in Shell Scripting.
Usually, a Shell Script has two types of variables:
Our learners also read: Free online python course for beginners!
4. How can you make a variable unchangeable?
You can make a variable unchangeable using read-only. Let’s say you want the value of the variable ‘a’ to remain as five and keep it constant, so you use readonly like so:
$ a=5
$ readonly a
5 . Name the different types of Shells.
There are four core types of Shells, namely:
The two most important types of Shell in Linux are Bourne Shell and C Shell.
6 . Explain “Positional Parameters.”
Positional parameters are variables defined by a Shell. They are used to pass information to the program by specifying arguments in the command line.
7 . How many Shells and Kernels are available in a UNIX environment?
Typically, a UNIX environment has only one Kernel. However, there are multiple Shells available.
8 . Do you need a separate compiler to execute a Shell program?
No, you don’t need a separate compiler to execute a Shell program. Since Shell itself is a command-line in the shell program and executes them.
9 . How do you modify file permissions in Shell Scripting?
You can modify file permissions via umask. With the unmask (user file-creation mode mask) command, you can change the default permission settings of files that are newly created.
10 . What does a “.” (dot) at the beginning of a file name indicate?
A file name that starts with a “.” is a hidden file. Usually, when you try to list the files in a Shell, it lists all files except the hidden files. However, the hidden files are present in the directory. If you wish to view hidden files, you must run the Is command with the “–a” flag.
upGrad’s Exclusive Data Science Webinar for you –
Below, there are potential unix interview questions that would help one to be well-informed and prepared in advance.
Do you understand Linux? What is Linux?
Linux is a type of open-source operating system based on the Linux Kernel, a computer program that is the core of computer operating systems, which enables managing a computer’s hardware and software.
What is a Shell?
A shell is an application that serves as the interface between the user and the Kernel.
What do you mean by Shell Scripting?
Shell scripting is written in a plain text format, a programming language that enables the user to automate and execute tasks on an operating system.
What are the benefits of shell scripting?
It is a lightweight and portable tool that can be used on any Unix-like operating system. It helps in automating and executing a wide variety of tasks
Name different types of shells in shell scripting.
C Shell, Bourne Again shell, and Korn shell are some different types of shell that can be used.
What is a C shell?
C shell or CSH shell is a shell scripting program that uses the C program shell syntax. It was created by Bill Joy in the 1970s in California, America.
What are the limitations of shell scripting?
What do you understand about a metacharacter?
Meta character is a special character used in a program of a shell. It is used to match a similar pattern of characters in a file. For example, to list all the files in the program that begin with the letter ‘p’, use the ls p* command.
11 . How to create a shortcut in Linux?
You can create shortcuts in Linux via two links:
Hard link – These links are linked to the inode of the file. They are always present in the same file system as the file. Even if you delete the original file, the hard link will remain unaffected.
Soft link – These links are linked to the file name. They may or may not reside on the same file system as the file. If you delete the original file, the soft link becomes inactive.
12. Name the different stages of a Linux process.
Typically, a Linux process traverses through four phases:
13 . Is there an alternative command for “echo?”
Yes, tput is an alternative for echo command. The tput command allows you to control how the output will be displayed on the screen.
14. How many blocks does a file system contain?
A file system has four blocks:
Must Read: Python Interview Questions
15 . Name the three modes of operation of vi editor.
The three modes of operation are:
16 . Define “Control Instructions.” How many types of control instructions are available in a Shell?
Control instructions are commands that allow you to specify how the different instructions in a script should be executed. Thus, their primary purpose is to determine the flow of control in a Shell program.
A Shell has four types of control instructions:
17. Define “IFS.”
IFS refers to Internal Field Separator. It is a system variable whose default value is space, tab, following by a new line. IFS denotes where a field or word ends in a line and where another begins.
18. Define “Metacharacters.”
A Shell consists of metacharacters, which are special characters in a data field or program that offers information about other characters. For example, the “ls s*” command in a Shell lists all the files beginning with the character ‘s’.
19. Differentiate between $* and $@.
While $* treats a complete group of positional parameters as a single string, $@ treats each quoted argument as separate arguments.
Also read: Python Developer Salary in India
20. Write the syntax of while loop in Shell Scripting.
In Shell Scripting, the while loop is used when you want to repeat its block of commands several times. The syntax for the “while” loop is:
while [test condition]
do
commands…
done
21. How are break and continue commands different?
The break command is used to escape out of a loop in execution. You can use the break command to exit from any loop command, including until and while loops. On the other hand, the continue command is used to exit the loop’s current iteration without leaving the complete loop.
22. Why do we use the Shebang line in Shell Scripting?
The Shebang line is situated at the top of a Shell script/program. It informs the user about the location of the engine that executes the script.
Here’s an example of a Shebang line:
#!/bin/sh
ct $1
23. Can you execute multiple scripts in a Shell?
Yes, it is possible to execute multiple scripts in a Shell. The execution of multiple scripts allows you to call one script from another. To do so, you must mention the script’s name to be called when you wish to invoke it.
24. Which command should you use to know how long a system has been running?
You need to use the uptime command to know how long a system has been running. Here’s an example of the uptime command:
u/user1/Shell_Scripts_2018> uptime
25. Which command should you use to check the disk usage?
You can use the following three commands to check the disk usage:
26. What do you mean by the Crontab?
Crontab is short for cron table, where Cron is a job scheduler that executes tasks. Crontab is a list of commands you want to run on a schedule, along with the command you want to use to manage that list.
27. When should we not use Shell Scripting?
We shouldn’t use Shell Scripting in these instances:
28. How do you compare the strings in a Shell script?
We use the test command to compare text strings. It compares text strings by comparing every character present in each string.
Read: Data Engineer Interview Questions
29. What do you mean by a file system?
A file system is a collection of files along with information related to those files. It controls how the data is retrieved and stored. Without file systems, data present in storage would only be a large body of data with no way of telling where one piece of data ends, and another begins.
30. Can you differentiate between single quotes and double quotes?
Yes. We use single quotes where we don’t want to perform the variables’ evaluation to values. On the other hand, we use double quotes where we want to perform the variables’ evaluation to values.
31. What do you mean by GUI scripting?
We use GUI to control a computer and its applications. Through GUI scripting, we can handle various applications, depending on the operating system.
32. What do you know about the Super Block in Shell scripting?
The Super Block is a program that has a record of particular file systems. It contains characteristics including the block size, filled and empty blocks with their respective counts, the location and the size of the inode tables, usage information, the disk block map, etc.
33. What is the importance of the Shebang line?
The Shebang line remains at the script’s top. It gives information about the location where the engine is, which executes the script.
34. Provide some of the most popular UNIX commands.
Here are some of the most popular UNIX commands:
Additional Notes: This one is among the most crucial Shell scripting interview questions. We recommend preparing a more thorough list of UNIX commands as many versions of this question are asked in interviews.
Must Read: Data Science Interview Questions
35. How is C Shell better than Bourne Shell?
C Shell is better than Bourne Shell for the following reasons:
Due to the above two reasons, using C Shell is much more advantageous than Bourne Shell.
36. What is it essential to write Shell Scripts?
Shell scripting has many benefits that make it crucial. It takes input from users, files it, and displays it on the screen. Moreover, it allows you to make your own commands and automate simple daily tasks. You can use Shell scripting to automate system administration tasks also. Shell scripting makes your processes more efficient by saving you a lot of energy and time. Due to this, it is quite essential and widely used.
37. What are some disadvantages of Shell Scripting?
Just as there are several advantages of Shell Scripting, there are also some disadvantages of the program. Shell Script interview questions may ask you to count some of them. They are as follows:
38. What is Shell Scripting?
One of the most basic Shell Script interview questions is what is shell scripting? Simply put, Shell Scripting is an open-source computer program run by Unix/Linus shell to create plain text files that store and execute command lines. It removes the need to code and run repetitive commands manually each time.
39. What is Shell?
One of the most unavoidable Unix Shell Scripting interview questions will require you to define Shell. A Shell is an intermediary connecting the kernel and the user. It communicates with the kernel when a user enters a command for execution. Ultimately, the output is displayed to the user.
Shell Scripting is a time saver for programs. If you want to remove mundane and repetitive tasks from your workload, Shell Scripting can help you tremendously. You don’t even need to be an expert. We hope these 26 Shell Scripting interview questions and answers help you break the ice on Shell Scripting and prepare for your next interview!
If you are curious to learn about data science, check out IIIT-B & upGrad’s Executive PG Programme in Data Science which is created for working professionals and offers 10+ case studies & projects, practical hands-on workshops, mentorship with industry experts, 1-on-1 with industry mentors, 400+ hours of learning and job assistance with top firms.
Get Free Consultation
By submitting, I accept the T&C and
Privacy Policy
Start Your Career in Data Science Today
Top Resources