#!/bin/bash

# Last update 2020/05/18

testroot="`whoami`"
if [ "$testroot" != "root" ]; then
	echo " Must be root... Exiting"
	exit 1
fi

if [ -f /usr/bin/pearl-editor ]; then
	PEARLEDITOR="pearl-editor"
else
	PEARLEDITOR="gnome-text-editor"
fi

$PEARLEDITOR /etc/apt/sources.list

exit 0
