How to Read User Input in Bash [5 Practical Cases]

In Bash, one way to interact with users is by reading user input, which allows scripts and programs to accept data directly from the keyboard or other input sources. So, reading user input is a crucial aspect of creating interactive scripts. From this article, you will know how to read bash user inputs using the ‘read’ command with some practical cases.

Key Takeaways

  • Learning about the ‘read’ command.
  • Learning about practical cases of how to read user inputs.

Free Downloads

The ‘read’ Command

In Bash, the ‘read’ command is a built-in command used to read input from the user or from a specified input source. It then assigns the entered value to one or more variables for further script processing.

Command Syntax >

read [OPTION]... Variable…

Useful Options

  • -s → Let the command perform in the ‘silent’ mode.
  • -n → Returns after reading the specified number of characters.
  • -t → Sets the time in seconds that the script should wait for the input from the user.
  • -r → Disables backlashes to escape characters.
  • -p → Shows a message to the user before the input prompt.

5 Cases of Reading User Inputs Using the ‘read’ Command

Bash uses the ‘read’ command to read user inputs. In this article, I will discuss some practical cases of how to create bash scripts to read user inputs.

Case 1: Read Single User Input Using Bash Script

In this case, I will show you how you can simply use the ‘read’ command to read a single user input. Please follow the below steps to check the process:

Steps to Follow >

➊ At first, launch an Ubuntu Terminal.

➋ Now, write the following command to open a file in the nano text editor:

nano intro.sh

File in the nano editor➌ Afterward, write the following script in the nano editor:

#! /bin/bash

echo “What’s your name?”
read name
echo “Hello, $name! Nice to meet you.”

EXPLANATION
Here, #! /bin/bash: ‘#!’, is called shebang or hashbang. It indicates the interpreter to be used for executing the script, in this case, it’s bash. Next, the ‘echo’ command echoes the quoted message. After that, the “read” command reads & stores the input from the user and assigns it to the variable “name”. In the last line, the “echo” command echoes the value stored in the “name” variable along with other parts of the message.

➍ Then, press CTRL+S to save the file & press CTRL+X to exit the nano editor.

➎ After that, use the following command to make the script executable:

chmod u+x intro.sh

EXPLANATION
  • chmod: Changes the permission of files and directories.
  • u+x: Argument with chmod command to add the executable permission for the user.
  • sh: File which you want to make executable.

➏ Finally, run the script by the following command:

./intro.sh

Running Bash script for reading single inputIn the above image, you can see that, I successfully ran the created “intro.sh” script. The script is showing a user interactive message ‘What’s your name?’. Later it has been read & displayed after the user has inserted the value ‘Joy’.

Case 2: Read Multiple User Inputs Using Bash Script

The ‘read’ command in Bash can read multiple variables at a time. For that, just provide a list of variable names separated by spaces, and the command will assign the corresponding inputs to each variable.

You can follow the steps of Case 01, to save & make the script executable.

Script (info.sh) >

#! /bin/bash

echo “Enter your name, age, and gender: ”
read name age gender
echo “Name: $name”
echo “Age: $age”
echo “Gender: $gender”

EXPLANATION
First, the ‘echo’ command prints a prompt message to the user, specifying the inputs expected. After that, The ‘read’ command reads the user’s input, which is then executed to contain three values separated by spaces. It assigns these values to the variables ‘name’, ‘age’, & ‘gender’ respectively.  The next three lines display the value stored in these variables.

Now, run the script by the following command:

./info.sh 

Running Bash script for reading multiple inputsIn the above image, you can see that, I successfully ran the created “info.sh” script. The script is showing a user interactive message for multiple inputs. Later these values have been read & displayed after the user has inserted the values ‘joy 20 male’ (separated by space).

Case 3: Read Input from a File in Bash

You can use the ‘read’ command within a loop to process each line of a file. In this case, the script will simply echo each line with a processing message, but you can perform any desired operations.

You can follow the steps of Case 01, to save & make the script executable.

Script (file.sh) >

#! /bin/bash

filename=”input.txt”

while IFS=read -r line
do
echo “Processing: $line”
# Performs actions on each line
done < “$filename”

EXPLANATION

First, assign the file name you want to read from to the variable ‘filename’. Here, the file name is set to ‘input.txt’. Make sure the file exists in the same directory as the script or provide the full path to the file.

Then, the ‘while IFS=read -r line’ line initiates a ‘while’ loop that iterates over each line of the file. Where in ‘IFS=read -r line’, the ‘read’ command reads each line from the file and assigns it to the variable ‘line’. By setting ‘IFS= ’ and using the ‘-r’ option it is ensured that leading & trailing whitespaces are preserved, and backlashes are not interpreted as escape characters. And ‘do’ sets actions for the command.

After that, ‘echo “Processing: $line”’, this line prints the current line being processed. Lastly, ‘done < “$filename”, this line redirects the contents of the file specified by the ‘$filename’ variable as input for the ‘while’ loop. Each line of the file will be read and processed until the end of the file is reached.’

Now, run the script by the following command:

./file.sh 

Running Bash script for reading from a fileIn the above image, you can see that, I successfully ran the created “file.sh” script. The script is reading & processing each line of the file ‘input.txt’. After reading, it is also displaying them one by one.

Case 4: Read User Password Securely Using Bash

Using the ‘read’ command with option ‘–silent’ or ‘-s’ you can assign any sensitive user information as the command option hides them without being displayed on the screen.

You can follow the steps of Case 01, to save & make the script executable.

Script (password.sh) >

#! /bin/bash

echo -n Enter your password:
read -s password
echo
# Perform actions in silent mode
echo “Password entered: $password”

EXPLANATION
The first line ‘echo -n “Enter your password: ”’, echoes the quoted message with, -n being used to prevent a newline character from being added. Then in ‘read -s password’, the option ‘-s’ lets operate the “read” command in silent mode. Thus, the user can enter a password without displaying the characters on the screen. After that “echo” prints a ‘newline’ just to maintain the readability. Finally, ‘echo “Password entered: $password”’, prints out the password that the user entered.

Now, run the script by the following command:

./password.sh 

Running bash script for user password inputIn the above image, you can see that, I successfully ran the created “password.sh” script. The script is showing a user interactive message ‘Enter your password’. Later, the user enters the password but the command reads it in ‘silent mode’ without displaying it. Which we can see after printing the value.

Case 5: Create an Interactive Prompt for Multiple Input Types

You can also write a bash program to generate prompts for multiple inputs. In this case, the prompt will ask the user three different questions and print them at the end.

You can follow the steps of Case 01, to save & make the script executable.

Script (prompt.sh) >

#!/bin/bash

echo "Welcome. What should we call you: "
read var_name
echo “It’s nice to meet you” $var_name
read -p “Enter your age:  ” number
echo “So, you are a $number year old!”
echo ”Do you like bash programming?(y/n)”
read
echo “That’s good to know, thank you.”

EXPLANATION
The first line echoes a message. In the next line, the script takes the input as a variable and prints it. Then, in the next line, the “read” command prints the prompt and takes a numeric value from the user using the -p (prompt) option, and prints this number in the next line. At last, comes the yes/no question to the user, which is read by default, and the program ends with a thank-you message.

Now, run the script by the following command:

./prompt.sh

Running bash script for prompt input

Output Analysis
First, it welcomed the user and asked for the user name, in the next line the user inserted the value ‘jane’. After that, the program prints “It’s nice to meet you jane”. Where ‘jane’ is the variable value. Then asks for the user’s age by “Entering your age” and the user inserted 12. The next line prints the user’s age with the line “So, you are a 12 year old!”. Finally, asks a yes/ no question, and the user inserts “Yes” by entering the letter “y”. After reading the message “That’s good to know, thank you.” is displayed.

Conclusion

To sum up, learning to create interactive scripts is a mandatory Bash scripting task. And for that, you have to learn to read user inputs. Hope this article helps in attaining the necessary knowledge.

People Also Ask

How to read user input in bash?
To read the user input, use the built-in command called ‘read’. As it takes input from the user & assigns it to the variable.

How to enter user input in shell script?
To enter user input in a shell script, you can use the ‘read’ command. For that use the command’s basic syntax, ‘read variable_name’. When the ‘read’ command is executed, it waits for the user to input a value which then is stored in the specified variable for further processing of the script.

How to pass input in bash?
In Bash, there are multiple ways to pass input to a script or a command. Such as Command-Line Arguments, Standard Input or Piping, and User Prompts (Interactive inputs).

How do you use $1 in shell script?
In a shell script, the special variable ‘$1’ represents the first command-line argument passed to the script. You can also use other special variables like ‘$2’, ‘$3’, and so on to access subsequent command-line arguments if they are provided.

What is Bash Prompt?
The command-line interface in the Unix-based Bash shell, Bash Prompt, displays the user’s current working directory and provides a location to enter commands. The prompt indicates that the shell is prepared to handle the next command you type.

Where is Bash Prompt Set?
The environment variable PS1 (Prompt String 1), is used for the interactive shell prompts, which sets the Bash prompt. A PS2 variable is also used when more input is required to complete a Bash command.

Can I provide a default value when prompting for user input in Bash?
Yes, while prompting for user input, you can provide a default value. Even if you recommend a default value to the user, you can allow them to override it if they so desire.

Related Articles


<< Go Back to Bash Input | Bash I/O | Bash Scripting Tutorial

5/5 - (4 votes)
Monira Akter Munny

Hello!! This is Monira Akter Munny. I'm a Linux content developer executive here, at SOFTEKO company. I have completed my B.Sc. in Engineering from Rajshahi University of Engineering & Technology in the Electrical & Electronics department. I'm more of an online gaming person who also loves to read blogs & write. As an open-minded person ready to learn & adapt to new territory, I'm always excited to explore the Linux world & share it with you! Read Full Bio

Leave a Comment