美文网首页
shell基础(5) - read

shell基础(5) - read

作者: 足__迹 | 来源:发表于2019-12-04 23:15 被阅读0次

    input

    read -p "请输入你的姓名" name
    read -p "请输入你的年龄" age
    
    function info {
       # -e 可以解析输出内容的特殊含义例如换行
       echo -e "你的年龄 :$age" "\n你的名字 $name"
    }
    info 
    
    
    image.png

    没有指定输入内容的指定变量,会将变量放在$REPLY中 再次输入会替代

    read -p  "请输入第一次内容"
    read -p  "请输入第二次内容"
    
    echo "$REPLY" 
    
    image.png

    相关文章

      网友评论

          本文标题:shell基础(5) - read

          本文链接:https://www.haomeiwen.com/subject/tdyrgctx.html