我想开始屏幕分离会话,但我想评估一些bash.看起来屏幕只支持可执行文件和二进制文件.我想做一些神奇的事情:
screen -d -m script.sh 2>&1 | tee logfile.log
但这显然不起作用.引用在这里没有帮助.我唯一的想法是创建一个包装器脚本,它将执行此重定向,然后直接调用它,如:
screen -d -m wrapper_script.sh
还有其他想法吗?谢谢.
解决方法
你可以让屏幕运行一个bash shell,然后运行你的脚本.
我刚试过这个:
screen -d -m bash -c 'vmstat 5 3 2>&1 | tee logfile.log'
这给了我这个:
kenny@t520:~$cat logfile.log procs -----------memory---------- ---swap-- -----io---- -system-- ----cpu---- r b swpd free buff cache si so bi bo in cs us sy id wa 1 0 0 5864764 103072 884512 0 0 66 36 1236 1818 17 6 77 0 0 0 0 5864252 103072 884512 0 0 0 0 311 574 1 1 98 0 1 0 0 5861532 103080 884512 0 0 0 4 1244 2302 4 2 94 0
所以这也应该有效:
screen -d -m bash -c 'script.sh 2>&1 | tee logfile.log'