View Ticket
Not logged in
2022-01-21
05:31 New ticket [69624311b2] Commentable start script. artifact: aec0774b0f user: vitus

Ticket Hash: 69624311b2440ae63ed9a4f784feefefa877d278
Title: Commentable start script
Status: Open Type: Feature_Request
Severity: Critical Priority:
Subsystem: Resolution:
Last Modified: 2022-01-21 05:31:47
Version Found In: 0.8
User Comments:
vitus added on 2022-01-21 05:31:47:

Now start script, generated by vws uses shel line continuation chardtecr to collect lots of options into single command line.

This doesn't allow to put shell comments in, neither comment out some options to disable them temporarily.

Maxim Nikuiln suggested use of bash arrays instead of continuation. Something like

ARG[1]="-name name"
ARG[2]="-net user"
ARG[3]="-mem 4G"

qemu-system-x86 $ARG[*]