Home Operation and Maintenance Linux Operation and Maintenance Introducing the usage of read in linux

Introducing the usage of read in linux

Sep 04, 2017 pm 03:38 PM
linux read usage

1. Basic reading

The read command receives input from standard input (keyboard) or input from other file descriptors (discussed later). After getting the input, the read command puts the data into a standard variable. The following is the simplest form of the read command

::

#!/bin/bash
echo -n "Enter your name:"   //参数-n的作用是不换行,echo默认是换行
read  name                   //从键盘输入
echo "hello $name,welcome to my program"     //显示信息
exit 0                       //退出shell程序。
//********************************
Copy after login

Since the read command provides the -p parameter, a prompt can be specified directly on the read command line.

So the above script can be abbreviated as the following script::

#!/bin/bash
read -p "Enter your name:" name
echo "hello $name, welcome to my program"
exit 0
Copy after login

In the above read, the variable after read only has one name, or there can be multiple. At this time, if multiple data are input, then The first data is given to the first variable, and the second data is given to the second variable. If there are too many input data, all the values ​​will be given to the first variable. Will not end if too little input.

//******************************************

You do not need to specify variables in the read command line. If you do not specify a variable, the read command will place the received data in the environment variable REPLY.

For example::

read -p "Enter a number"

The environment variable REPLY contains all the data entered and can be used in shell scripts like other variables. Environment variable REPLY.

2. Timing input.

There are potential dangers in using the read command. The script will most likely stop and wait for user input. If the script must continue execution regardless of whether data is entered, a timer can be specified using the -t option.

-t option specifies the number of seconds the read command waits for input. When the timer expires, the read command returns a non-zero exit status;

#!/bin/bash
if read -t 5 -p "please enter your name:" name
then 
echo "hello $name ,welcome to my script"
else
echo "sorry,too slow"
fi
exit 0
Copy after login

In addition to inputting the timer, you can also set the read command to count the characters entered. When the number of characters entered reaches the predetermined number, it automatically exits and assigns the entered data to variables.

#!/bin/bash
read -n1 -p "Do you want to continue [Y/N]?" answer
case $answer in
Y | y)
  echo "fine ,continue";;
N | n)
  echo "ok,good bye";;
*)
 echo "error choice";;
esac
exit 0
Copy after login

This example uses the -n option, followed by the value 1, to instruct the read command to exit as soon as it receives one character. Just press a character to answer, and the read command immediately

accepts the input and passes it to a variable. No need to press enter.

3. Silent reading (input is not displayed on the monitor)

Sometimes script user input is required, but the entered data is not expected to be displayed on the monitor. A typical example is entering a password, but of course there are many other data that need to be hidden. The

-s option enables the data entered in the read command not to be displayed on the monitor (actually, the data is displayed, but the read command sets the text color to the same color as the background).

#!/bin/bash
read  -s  -p "Enter your password:" pass
echo "your password is $pass"
exit 0
Copy after login

4. Read files

Finally, you can also use the read command to read files on the Linux system.

Every time the read command is called, "one line" of text in the file will be read. When the file has no readable lines, the read command will exit with a non-zero status.

The key to reading a file is how to transfer the data in the text to the read command.

The most common method is to use the cat command on the file and pipe the results directly to the while command containing the read command

Example::

#!/bin/bash
count=1    //赋值语句,不加空格
cat test | while read line        //cat 命令的输出作为read命令的输入,read读到的值放在line中
do
   echo "Line $count:$line"
   count=$[ $count + 1 ]          //注意中括号中的空格。
done
echo "finish"
exit
Copy after login

The above is the detailed content of Introducing the usage of read in linux. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1655
14
PHP Tutorial
1252
29
C# Tutorial
1226
24
Linux Architecture: Unveiling the 5 Basic Components Linux Architecture: Unveiling the 5 Basic Components Apr 20, 2025 am 12:04 AM

The five basic components of the Linux system are: 1. Kernel, 2. System library, 3. System utilities, 4. Graphical user interface, 5. Applications. The kernel manages hardware resources, the system library provides precompiled functions, system utilities are used for system management, the GUI provides visual interaction, and applications use these components to implement functions.

vscode terminal usage tutorial vscode terminal usage tutorial Apr 15, 2025 pm 10:09 PM

vscode built-in terminal is a development tool that allows running commands and scripts within the editor to simplify the development process. How to use vscode terminal: Open the terminal with the shortcut key (Ctrl/Cmd). Enter a command or run the script. Use hotkeys (such as Ctrl L to clear the terminal). Change the working directory (such as the cd command). Advanced features include debug mode, automatic code snippet completion, and interactive command history.

How to check the warehouse address of git How to check the warehouse address of git Apr 17, 2025 pm 01:54 PM

To view the Git repository address, perform the following steps: 1. Open the command line and navigate to the repository directory; 2. Run the "git remote -v" command; 3. View the repository name in the output and its corresponding address.

Where to write code in vscode Where to write code in vscode Apr 15, 2025 pm 09:54 PM

Writing code in Visual Studio Code (VSCode) is simple and easy to use. Just install VSCode, create a project, select a language, create a file, write code, save and run it. The advantages of VSCode include cross-platform, free and open source, powerful features, rich extensions, and lightweight and fast.

How to run java code in notepad How to run java code in notepad Apr 16, 2025 pm 07:39 PM

Although Notepad cannot run Java code directly, it can be achieved by using other tools: using the command line compiler (javac) to generate a bytecode file (filename.class). Use the Java interpreter (java) to interpret bytecode, execute the code, and output the result.

What is the main purpose of Linux? What is the main purpose of Linux? Apr 16, 2025 am 12:19 AM

The main uses of Linux include: 1. Server operating system, 2. Embedded system, 3. Desktop operating system, 4. Development and testing environment. Linux excels in these areas, providing stability, security and efficient development tools.

vscode Previous Next Shortcut Key vscode Previous Next Shortcut Key Apr 15, 2025 pm 10:51 PM

VS Code One-step/Next step shortcut key usage: One-step (backward): Windows/Linux: Ctrl ←; macOS: Cmd ←Next step (forward): Windows/Linux: Ctrl →; macOS: Cmd →

vscode terminal command cannot be used vscode terminal command cannot be used Apr 15, 2025 pm 10:03 PM

Causes and solutions for the VS Code terminal commands not available: The necessary tools are not installed (Windows: WSL; macOS: Xcode command line tools) Path configuration is wrong (add executable files to PATH environment variables) Permission issues (run VS Code as administrator) Firewall or proxy restrictions (check settings, unrestrictions) Terminal settings are incorrect (enable use of external terminals) VS Code installation is corrupt (reinstall or update) Terminal configuration is incompatible (try different terminal types or commands) Specific environment variables are missing (set necessary environment variables)

See all articles