代码之家  ›  专栏  ›  技术社区  ›  miken32 Amit D

暂时停止重定向以获取用户输入

  •  1
  • miken32 Amit D  · 技术社区  · 6 年前

    exec 6>&1 1>"$logFile" 2>"$logFile"
    
    # do stuff
    
    exec 1>&6 2>&6 6>&-
    

    #!/usr/bin/env bash
    
    function getInput() {
        local userInput
        # disable redirection temporarily
        exec 1>&6 2>&6 6>&- 
        read -rp "Prompt: " userInput
        # restore redirection
        exec 6>&1 1>>"$logFile" 2>>"$logFile"
        echo "$userInput"
    }
    
    logFile="$HOME/foo.txt"
    
    # enable redirection to the log file
    exec 6>&1 1>"$logFile" 2>"$logFile"
    
    input=$(getInput)
    
    exec 1>&6 2>&6 6>&-
    
    echo "Got $input"
    

    提示出现,我可以输入响应,但输入不会返回到主脚本。为什么?


    exec 在函数的第行中,输入被正确读取并返回,但当然不会显示对用户的提示,即使我执行以下重定向: read -rp "Prompt: " input >&6

    1 回复  |  直到 6 年前
        1
  •  1
  •   Barmar    6 年前

    echo "$userInput" . 但是命令替换通过运行命令并将其输出重定向到管道来工作,并且您正在重写它。结果,nput被写入文件,而不是管道。

    我还修改了你的脚本来保存和恢复 stdout stderr 分开,而不是假设它们最初指向同一事物。还有,自从 read -p 使用 ,我只在函数中保存/还原该FD。

    #!/usr/bin/env bash
    
    function getInput() {
        local userInput
        # disable redirection temporarily
        exec 8>&2 2>&7
        read -rp "Prompt: " userInput
        # restore redirection
        exec 2>&8 8>&-
        echo "$userInput"
    }
    
    logFile="$HOME/foo.txt"
    
    # enable redirection to the log file
    exec 6>&1 7>&2 1>"$logFile" 2>&1
    
    input=$(getInput)
    
    exec 1>&6 2>&7 6>&- 7>&-
    
    echo "Got $input"
    

    但是所有这些重定向都是不必要的,你可以直接重定向 read

    read -rp "Prompt: " userInput 2>&7
    

    请注意,它应该是 标准错误 在这里被重定向,不是吗 标准 ; 使用 标准错误 精确到可以在 标准