无法使用 nohup 和 socat 捕获远程客户端数据
我需要捕获socat在远程服务器上运行的详细和调试输出。 socat我可以在前台运行时实现上述操作: $ socat -x -d -d -d tcp-l:8080,bind=0.0.0.0,fork,reuseaddr - 2>stderr.log >stdout.log 然而,stdout.log如果上述操作nohup在后台运行,则不会收到任何输出: $ nohup socat -x -d -d -d tcp-l:8080,bind=0.0.0.0,fork,reuseaddr - 2>stderr.log >stdout.log...