#!/usr/bin/env bash

if [[ $@ != "" ]]; then
    sudo $@
else
    echo "🥤 Drink up!"
fi
