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


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM