10 lines
119 B
Bash
Executable File
10 lines
119 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
|
|
VBoxManage list vms|grep controller
|
|
if [ "$?" == "0" ]; then
|
|
exit 0
|
|
else
|
|
source first_run.sh
|
|
fi
|