#!/bin/bash

echo $3
if [[ "$1" =~ -D.* ]]
then
	sudo $3
else
	sudo "$1" "$2"
fi
