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