關於while read line使用read -p失效問題

while stdin 原來默認是/dev/tty,被重定向到管道或文件後,若是你還想讀屏幕(/dev/tty),那就單獨執行某個命令時在顯式的將stdin再指向 /dev/ttyhtml #!/bin/bash while read info do echo "$info" read -p'enter' dev </dev/tty echo $dev done < /root/userconfi
相關文章
相關標籤/搜索