malongshuai / malongshuai.github.io

2 stars 0 forks source link

Shell脚本深入教程:Bash read命令读数据 | 骏马金龙 #228

Open malongshuai opened 3 years ago

malongshuai commented 3 years ago

https://www.junmajinlong.com/shell/script_course/shell_read/

Linux基础系列文章大纲Shell系列文章大纲 Bash read命令读数据read命令是bash内置命令,用来从标准输入中读取数据。比如可以交互式读取用户在终端的输入,读取管道数据,读取标准输入重定向数据,等等。 读取文件中数据的方式: 按字符数读取 按分隔符读取 按行读取 一次性读完所有数据 按字节数读取(read命令不支持) 语法: 1234567891