4

What I want is to find the name of the user that runs bash script, when this script is executed by sudo. The only possible way, that I know, is to parse the output of who -m (who am i) in this way:

user@UbuntuServer:~$ cat who.sh 
#!/bin/sh
whoami
echo $USER
who -m | awk '{print $1}'

user@UbuntuServer:~$ sudo ./who.sh 
root
root
user

The problem is: In Ubuntu Desktop 16.04.4 who -m (resp. who am i) do nothing. Why?

enter image description here

Another question is why the Ubuntu's online manual page for who is different from man who executed either on Ubuntu Desktop or Server?

But these questions are not so important according to my goals. And as it is mentioned in the title, the main question is: How do I find which user executes the script when is used sudo?


Practically, the original title - How do I find 'who am I' on Ubuntu Desktop? - is the same but wrongly asked question.

pa4080
  • 30,621

2 Answers2

14

I had a similar problem a while ago, and the only way that has worked reliably for me so far, is:

echo ${SUDO_USER:-${USER}}

As long as the user works with the shell as himself, $USER contains his username. When he calls sudo, for the new subshell $SUDO_USER is set to what is $USER in the calling shell, and $USER becomes root, of course.

The trick with the operator :- is, that the whole expression evaluates to $SUDO_USER if it is set (so inside the subshell opened by sudo), and otherwise to $USER. Therefore, you always have the correct username and don't have to worry much about the context the expression is evaluated in, which I found to be convenient.

pa4080
  • 30,621
Wanderer
  • 355
2

While the solution provided by Wanderer works as it is expected, and it is straight answer to the question, for the past few years when I want to force the script to be executed by certain (system) user I am using the special environment variable Eeffective UID - $EUID.

#!/bin/bash
SCRIPT_UID="33"
[[ $EUID -ne $SCRIPT_UID ]] && {
  echo "Please run as $(id $SCRIPT_UID -un), use: sudo -u $(id $SCRIPT_UID -un) $0"
  exit 1
}
echo "The script is running as $(id $EUID -un)."
pa4080
  • 30,621