#!/bin/bash echo "* Warning: this will install proprietary software on your computer" echo "* This is completely unsupported by the AIMS Desktop community" read -a ANSWER -p "* Please type 'Yes' and press Enter to continue " if [ $ANSWER = "Yes" ]; then apt-get -y install aims-restricted-extras aims-restricted-extras-setup else echo "Aborting..." fi