The Bash read command is used to take input from the user while a script is running. If you are learning Bash scripting, the read command is very important because it allows your script to interact with users.
Instead of writing fixed values inside a script, you can ask the user to enter a name, file path, username, password, option, or any other value. This makes Bash scripts more flexible and useful for automation, Linux administration, cybersecurity tasks, and menu-based tools.
The read command reads input from the terminal and stores it in a variable.
Basic syntax:
read variable_name
Example:
read nameecho "Hello, $name"
When the script runs, it waits for the user to type something. After the user presses Enter, the input is stored in the variable.
Create a new Bash script:
nano read-example.sh
Add the following code:
#!/bin/bashecho "Enter your name:"read nameecho "Hello, $name"
Save the file and run it:
chmod +x read-example.sh./read-example.sh
Example output:
Enter your name:Kali UserHello, Kali User
You can use the -p option to show a prompt on the same line.
#!/bin/bashread -p "Enter your username: " usernameecho "Welcome, $username"
This is cleaner than using a separate echo command.
The read command can store multiple inputs in different variables.
#!/bin/bashread -p "Enter your first and last name: " first lastecho "First Name: $first"echo "Last Name: $last"
If the user enters:
Kali Linux
The script stores Kali in first and Linux in last.
For password input, use the -s option. This hides the text while the user types.
#!/bin/bashread -s -p "Enter password: " passwordechoecho "Password received"
The extra echo moves the cursor to a new line after password input.
#!/bin/bashread -p "Username: " usernameread -s -p "Password: " passwordechoif [[ "$username" == "admin" && "$password" == "admin123" ]]; then echo "Access granted"else echo "Access denied"fi
This is a basic example for learning purposes. In real systems, avoid storing plain-text passwords inside scripts.
The Bash read command is used to collect user input and store it in variables. You can use it with prompts, multiple values, and silent password input.
For beginners, learning the read command is important because it helps create interactive Bash scripts. It is useful for automation, user input validation, menu scripts, Linux tools, and cybersecurity practice scripts.
Introduction Bash scripting is a powerful way to automate Linux tasks, but writing a script…
Introduction A self-signed SSL certificate is a certificate that is created and signed by the…
Introduction Debugging is an important part of Bash scripting. When a script does not work…
Introduction Cron jobs are used in Linux to run commands or Bash scripts automatically at…
Introduction Pipes are an important feature in Linux and Bash scripting. A pipe allows you…
Introduction The grep, awk, and sed commands are powerful text-processing tools in Linux. They are…