18 Star 39 Fork 12

天才白痴/myshell

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
reads.sh 1.05 KB
一键复制 编辑 原始数据 按行查看 历史
fangpeng 提交于 2014-08-14 16:32 . basic
#!/bin/bash
# 控制等待输入的时间 -t Second
if read -t 5 -p "Please input your name:" name;
then
echo "$name,welcome!";
else
echo "sorry";
fi;
exit 0
# 控制输入字符长度 -nNumber Number表示控制字符的长度,超过则read命令立即接受输入并将其传给变量。无需按回车键。
read -n1 -p "Do you agree with me [Y/N]?" ans
case $ans in
Y|y)
echo "Great!";;
N|n)
echo "Oh No!";;
*)
echo "Please choice Y or N";;
esac;
# 读取文件,通过cat file 配合管道处理,如 cat file | while read line
count=1
if read -p "choice your file:" yourfile;then
cat $yourfile|while read line
do
echo "Line $count:$line"
let count++
done
exit 0
else
echo "None"
exit 0
fi;
exit 0
# 繁琐版本
echo "your name:"
read name
echo "name:$name"
# 精简版 -p 提示
read -p "your name:" name
echo "name:$name"
#如果不指定变量则放在环境变量REPLY中
read -p "you name:"
echo "name:$REPLY"
#密码 read -s (输入不显示在监视器上,实则改变背景色)
read -s -p "your pwd:"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Shell
1
https://gitee.com/koofoo/myshell.git
git@gitee.com:koofoo/myshell.git
koofoo
myshell
myshell
master

搜索帮助