Shell Scripting Interview Questions and Answers for freshers

100 Shell Scripting Interview Questions and Answers for Freshers
  1. What is shell scripting?

    • Answer: Shell scripting is a powerful way to automate tasks in a Unix-like operating system. It involves writing a series of commands in a shell script file (often with a .sh extension), which is then executed by the shell interpreter (like bash, zsh, or sh). This allows for batch processing, automating complex workflows, and creating reusable tools.
  2. What is the shebang?

    • Answer: The shebang, `#!/bin/bash` (or similar), is the first line in a shell script. It tells the operating system which interpreter to use to execute the script. `#!/bin/bash` specifies the Bash shell.
  3. Explain the difference between `sh` and `bash`.

    • Answer: `sh` is the original Bourne shell, a minimal and POSIX-compliant shell. `bash` (Bourne Again Shell) is a more feature-rich and widely used shell that's compatible with `sh` but adds many enhancements, like improved command history, job control, and array support.
  4. How do you add comments to a shell script?

    • Answer: Use the `#` symbol to add comments. Anything after `#` on a line is ignored by the shell interpreter.
  5. What are variables in shell scripting and how are they declared?

    • Answer: Variables store data. They're declared by simply assigning a value using the `=` operator. For example, `myVar="Hello World"`. Note that there's no explicit type declaration.
  6. How do you access the value of a variable?

    • Answer: Use the dollar sign ($) followed by the variable name. For example, `echo $myVar` would print "Hello World".
  7. What are the different types of variables in shell scripting?

    • Answer: Shell scripting primarily uses string variables. However, you can represent numbers and perform arithmetic operations. There are also environment variables, which are inherited from the parent process.
  8. Explain the difference between single and double quotes in shell scripting.

    • Answer: Single quotes prevent variable expansion. Double quotes allow variable expansion (substitution of variable values). For example, `echo '$myVar'` prints '$myVar', while `echo "$myVar"` prints "Hello World".
  9. How do you perform arithmetic operations in shell scripting?

    • Answer: Use the `let` command, `expr` command, or arithmetic expansion `$(( ))`. For example: `let x=10+5`, `x=$(expr 10 + 5)`, or `x=$((10+5))`.
  10. What are conditional statements in shell scripting?

    • Answer: `if`, `elif` (else if), and `else` statements control the flow of execution based on conditions. Conditions are typically evaluated using comparison operators (`-eq`, `-ne`, `-lt`, `-gt`, `-le`, `-ge`).
  11. Explain the `case` statement.

    • Answer: The `case` statement provides a way to select among multiple possible actions based on a value. It's a more concise alternative to nested `if` statements for handling multiple conditions.
  12. What are loops in shell scripting?

    • Answer: `for` and `while` loops are used for iteration. `for` loops are typically used for iterating over a list of items, while `while` loops continue as long as a condition is true.
  13. How do you read user input in a shell script?

    • Answer: Use the `read` command. `read variableName` will read input from the user and store it in `variableName`.
  14. Explain the `exit` command.

    • Answer: `exit` terminates the script execution. You can provide an exit status code (0 for success, non-zero for failure).
  15. What are command-line arguments? How are they accessed?

    • Answer: Command-line arguments are values passed to the script when it's executed. They're accessed using the `$1`, `$2`, `$3`, ... variables, where `$1` is the first argument, `$2` is the second, and so on. `$0` represents the script name itself.
  16. What is the purpose of the `$#` variable?

    • Answer: `$#` holds the number of command-line arguments passed to the script.
  17. What is the purpose of the `$*` and `$@` variables?

    • Answer: Both `$*` and `$@` represent all command-line arguments, but `$@` is generally preferred because it handles arguments containing spaces correctly, unlike `$*`.
  18. How do you create and use functions in shell scripting?

    • Answer: Define a function using `function functionName { commands; }` or simply `functionName () { commands; }`. Call a function by its name followed by parentheses `functionName`.
  19. What are arrays in shell scripting? How are they used?

    • Answer: Arrays store sequences of values. They're declared by assigning values within parentheses, for example `myArray=("value1" "value2" "value3")`. Elements are accessed using `${myArray[index]}`.
  20. How do you perform string manipulation in shell scripting?

    • Answer: Use built-in commands like `cut`, `sed`, `awk`, and parameter expansion features to perform operations like substring extraction, replacement, and concatenation.
  21. What is input/output redirection?

    • Answer: Redirection changes the source or destination of standard input (stdin), standard output (stdout), and standard error (stderr). `>` redirects stdout to a file, `>>` appends to a file, `<` redirects stdin from a file, `2>` redirects stderr to a file, and `2>&1` redirects stderr to stdout.
  22. Explain pipes in shell scripting.

    • Answer: Pipes (`|`) connect the stdout of one command to the stdin of another, creating a chain of commands where the output of one becomes the input for the next.
  23. What are environment variables? Give some examples.

    • Answer: Environment variables are variables accessible by all processes. Examples include `PATH` (specifies search path for executables), `HOME` (user's home directory), `USER` (username).
  24. How do you set and unset environment variables?

    • Answer: Use `export variableName=value` to set and `unset variableName` to unset.
  25. What is the purpose of the `grep` command?

    • Answer: `grep` searches for patterns in files. It's extremely useful for finding specific lines of text based on regular expressions or simple string matching.
  26. What is the purpose of the `sed` command?

    • Answer: `sed` (stream editor) is used for text transformations. It can perform operations like substitutions, deletions, insertions, and more, often using regular expressions.
  27. What is the purpose of the `awk` command?

    • Answer: `awk` is a powerful text processing tool that excels at pattern scanning and text manipulation. It's particularly useful for working with structured data (e.g., CSV files), performing calculations on fields, and generating reports.
  28. What is the `find` command used for?

    • Answer: `find` searches for files and directories based on various criteria (name, size, type, modification time, etc.). It's essential for locating specific files within a directory structure.
  29. Explain the `xargs` command.

    • Answer: `xargs` takes the output of a command (often `find`) and converts it into arguments for another command. This is useful for processing a large number of files efficiently.
  30. What are shell script debugging techniques?

    • Answer: Use `set -x` to enable tracing (display each command before execution), `set -v` to show script lines as they are read, add `echo` statements for debugging output, use a debugger, examine error messages carefully.
  31. How do you handle errors in a shell script?

    • Answer: Check exit status codes using `$?` (0 indicates success, non-zero indicates an error). Use `if` statements to handle different exit statuses and take appropriate actions (e.g., logging, reporting, exiting).
  32. What are some best practices for writing shell scripts?

    • Answer: Use meaningful variable names, add comments, modularize with functions, handle errors gracefully, use consistent indentation, test thoroughly, version control your scripts.
  33. Explain the concept of signal handling in shell scripts.

    • Answer: Signals (like SIGINT for Ctrl+C) can interrupt script execution. Use `trap` to define actions to be taken when specific signals are received (e.g., clean up temporary files before exiting).
  34. How do you write a shell script to check if a file exists?

    • Answer: Use the `-f` test operator within an `if` statement: `if [ -f "/path/to/file" ]; then echo "File exists"; fi`
  35. How do you write a shell script to copy a file?

    • Answer: Use the `cp` command: `cp source_file destination_file`
  36. How do you write a shell script to move a file?

    • Answer: Use the `mv` command: `mv source_file destination_file`
  37. How do you write a shell script to delete a file?

    • Answer: Use the `rm` command: `rm file_to_delete`
  38. How do you write a shell script to create a directory?

    • Answer: Use the `mkdir` command: `mkdir directory_name`
  39. How do you write a shell script to remove a directory?

    • Answer: Use the `rmdir` command (for empty directories) or `rm -r directory_name` (for non-empty directories).
  40. How do you write a shell script to list all files in a directory?

    • Answer: Use the `ls` command: `ls directory_name`
  41. How do you write a shell script to check if a directory exists?

    • Answer: Use the `-d` test operator: `if [ -d "/path/to/directory" ]; then echo "Directory exists"; fi`
  42. How do you write a shell script to get the current date and time?

    • Answer: Use the `date` command: `date`
  43. How do you write a shell script to send an email?

    • Answer: Use the `mail` command (or `sendmail`, `mutt`, etc., depending on your system configuration): `echo "Email body" | mail -s "Subject" recipient@example.com`
  44. How do you write a shell script to execute a command remotely on another machine?

    • Answer: Use `ssh`: `ssh username@remote_host "command"`
  45. How do you write a shell script to loop through each line of a file?

    • Answer: Use a `while` loop with `read`: `while read line; do echo "$line"; done < file.txt`
  46. How do you write a shell script to find a specific string within a file?

    • Answer: Use `grep`: `grep "string_to_find" file.txt`
  47. How do you write a shell script to replace a string within a file?

    • Answer: Use `sed`: `sed 's/old_string/new_string/g' file.txt > temp.txt; mv temp.txt file.txt`
  48. How do you write a shell script to count the number of lines in a file?

    • Answer: Use `wc -l`: `wc -l file.txt`
  49. How do you write a shell script to extract a specific column from a CSV file?

    • Answer: Use `cut`: `cut -d ',' -f 2 file.csv` (this extracts the second column)
  50. How do you write a shell script to sort the lines of a file alphabetically?

    • Answer: Use `sort`: `sort file.txt`
  51. How do you write a shell script to get the size of a file?

    • Answer: Use `stat`: `stat -c%s file.txt`
  52. How do you write a shell script to get the last modified time of a file?

    • Answer: Use `stat`: `stat -c%y file.txt`
  53. How do you write a shell script to check if a user exists?

    • Answer: Use `id`: `id -u username &> /dev/null; echo $?` (0 means user exists, 1 means it doesn't)
  54. How do you write a shell script to create a symbolic link?

    • Answer: Use `ln -s`: `ln -s source_file link_name`
  55. How do you write a shell script to determine the operating system?

    • Answer: Check the `uname` output: `uname -s`
  56. How do you write a shell script to get the current working directory?

    • Answer: Use `pwd`: `pwd`
  57. How do you write a shell script to change the working directory?

    • Answer: Use `cd`: `cd /path/to/directory`
  58. How do you write a shell script to check the disk space?

    • Answer: Use `df`: `df -h`
  59. How do you write a shell script to monitor CPU usage?

    • Answer: Use `top` or `mpstat` (requires root privileges): `top`
  60. How do you write a shell script to monitor memory usage?

    • Answer: Use `free`: `free -h`
  61. How do you write a shell script to kill a process?

    • Answer: Use `kill`: `kill `
  62. How do you write a shell script to find the process ID of a running process?

    • Answer: Use `pgrep`: `pgrep process_name`
  63. How do you write a shell script to run a command in the background?

    • Answer: Append an ampersand (&) to the command: `command &`
  64. How do you write a shell script to wait for a background process to finish?

    • Answer: Use `wait`: `wait `
  65. What are here documents in shell scripting?

    • Answer: Here documents provide a way to supply multiple lines of input to a command directly within the script, avoiding the need for separate files.
  66. What is the difference between `test` and `[` commands?

    • Answer: They are essentially the same. `[` is a synonym for the `test` command, often used within `if` statements for easier readability.
  67. Explain the use of regular expressions in shell scripting.

    • Answer: Regular expressions (regex) are patterns that describe strings. They're used with commands like `grep`, `sed`, and `awk` to match and manipulate text based on complex patterns.

Thank you for reading our blog post on 'Shell Scripting Interview Questions and Answers for freshers'.We hope you found it informative and useful.Stay tuned for more insightful content!