打算在shell里写脚本调用ssh,突然来个报错:
Pseudo-terminal will not be allocated because stdin is not a terminal.
中文解释:伪终端不会分配因为stdin不是终端。
查看ssh命令帮助得以解决:
-q Quiet mode. Causes most warning and diagnostic messages to be suppressed.
-T Disable pseudo-tty allocation.
然后ssh -Tq 用户@主机 -p 端口 即可。
时间: 2024-11-05 17:32:26