This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Install VirtualBox | |
echo "Do you want to install VirtualBox? [Y/n]" | |
read INPUT | |
if [[ "$INPUT" == 'Y' || "$INPUT" == 'y' ]]; then | |
# Select major version | |
DEFAULT=4.2 | |
echo "Select version e.g. $DEFAULT" | |
read VER |