#!/bin/bash

if $(getent group sudo | grep -q $@) || [ "$@" = "root" ]; then
  echo true
else
  echo false
fi
