답변:
bash 쉘을 화면에서 실행하여 스크립트를 실행할 수 있습니다.
방금 이것을 테스트했습니다.
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'