用于用户和控制台进行交互使用,类似于java中的System.in.read()
read [选项] [参数]
选项
参数
编写read.sh脚本,并赋予执行权限
#!/bin/bash read -t 5 -p "请输入任意文本" context echo $context
执行
[root@hadoop100 sh-demo]# ./read.sh 请输入任意文本test test
← 流程控制 系统函数-路径文件名→