14 lines
159 B
Bash
14 lines
159 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
./installbasics.sh
|
||
|
./installthemes.sh
|
||
|
./installadditions.sh
|
||
|
|
||
|
if getopts "v" OPTION
|
||
|
then
|
||
|
if [ "$OPTION" = "v" ]
|
||
|
then
|
||
|
./virtualboxsetup.sh
|
||
|
fi
|
||
|
fi
|