#!/bin/bash if [ "$1" = "y" ]; then sudo cp /etc/apt/sourcesy.list /etc/apt/sources.list sudo apt-get update elif [ "$1" = "n" ]; then sudo cp /etc/apt/sourcesn.list /etc/apt/sources.list sudo apt-get update else echo "ERROR MOFO!" fi