#!/bin/bash
#
user=`whoami`
if [ "$user" == "root" ];then
    echo "root is super user"
else
    echo "$user is a normal user"
fi