如何使用SqlPlus查询的输出提示用户输入更多信息

这个问题在这里已经有了答案:

  • 如何在Linux shell脚本中提示是/否/取消输入? 25个答案

  • 您需要添加对sqlplus调用以获取您编写的查询的输出。 看到这个SO问题的援助。

    一旦你有输出,你可以使用条件,如拉曼Sailopal建议。 就像是:

    output1="`sqlplus $statement1`"
    
    read -p "User $input appears $output1 times. Create user? [Y/n]" answer
    if [ -z "$answer" -o "$answer" == "y" -o "$answer" == "Y" ]
    then
        sqlplus $statement2
    else
        echo "Not creating user."
    fi
    
    链接地址: http://www.djcxy.com/p/25537.html

    上一篇: How to use output of SqlPlus query to prompt user for more input

    下一篇: How do I prompt a user for confirmation in bash script?