mirror of
https://github.com/kneutron/ansitest.git
synced 2025-01-16 04:42:55 +08:00
9 lines
204 B
Bash
9 lines
204 B
Bash
#!/bin/bash
|
|
|
|
# REF: https://blog.jasonantman.com/2012/04/adjusting-the-virtualbox-f12-bios-boot-prompt-timeout/
|
|
|
|
VBoxManage list vms
|
|
|
|
vmname="$1"
|
|
VBoxManage modifyvm "$vmname" --bioslogodisplaytime 10000
|