...
Code Block |
---|
HOME=$PWD ./bin/assemble_cvd --group_id=cvd_1 --report_anonymous_usage_stats=y --vm_manager=qemu_cli --webrtc_device_id=cvd_1-1 --gpu_mode=drm_virgl |
Then we can use the to launch the shell script with below command. This command can help use to close closes stdin and direct directs the stdout to the pipe for workaround the failure mentioned above:
Code Block |
---|
true | sh test.sh 2>&1 | cat |
...