zoukankan      html  css  js  c++  java
  • shell中通过读取输入yes no判断下一步如何处理

        

                        if [ -d $r_item_rmgit ];then
                                read -p "$r_item_rmgit exit, replace it [Y/n]: " REPLACE
                                case $REPLACE in
                                    [yY][eE][sS]|[yY])
                                    REPLACE="yes"
                                    echo "replace $r_item_rmgit."
                                    rm -rf $r_item_rmgit
                                    ;;
                                    [nN][oO]|[nN])
                                    REPLACE="no"
                                    echo "do not replace $r_item_rmgit."
                                    ;;
                                    *)
                                    echo "Input error, should be [Y/n]."
                                    exit 1
                                esac    
                            fi

  • 相关阅读:
    Some day some time we will do
    qemu-img 的使用
    虚拟化qemu-img的简单用法。
    linux 后台执行命令
    C#向服务器上传文件问题
    Canvas保存为图片
    一个Sql备注
    fabric Clone
    Js 正则获取Html元素
    Graphic 完成文字缩放
  • 原文地址:https://www.cnblogs.com/idyllcheung/p/11547352.html
Copyright © 2011-2022 走看看