标签: bash file-descriptor remote-execution
我想使用其他文件描述符在远程计算机上执行本地脚本。
#!/bin/bash echo "first log" echo "second log" >&3
我尝试以这种方式运行它:
ssh remote_host 'bash -s' < test.sh >first.log 3>second.log
仅填充我的第一个日志。第二秒,它给出“错误的文件描述符”错误。