Last active
April 30, 2024 03:34
-
-
Save joshgachnang/2306795 to your computer and use it in GitHub Desktop.
Bash Check Username of User Running Script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [ "$(whoami)" != "username" ]; then | |
echo "Script must be run as user: username" | |
exit 255 | |
fi |
@HaoZeke
checking $USER is not working if the script is run with "sudo -u someuser", but whoami works correctly.
it works fine
[cade@db01 tmp]$ sudo /tmp/test.sh
Current user: [root]
[cade@db01 tmp]$ sudo -i /tmp/test.sh
Current user: [root]
[cade@db01 tmp]$ sudo -i -u oracle /tmp/test.sh
Current user: [oracle]
[cade@db01 tmp]$ sudo -u oracle /tmp/test.sh
Current user: [oracle]
[cade@db01 tmp]$ sudo -u grid /tmp/test.sh
Current user: [grid]
[cade@db01 tmp]$ sudo -i -u grid /tmp/test.sh
Current user: [grid]
[cade@db01 tmp]$ cat /tmp/test.sh
#!/usr/bin/env bash
echo "Current user: [$USER]"
exit
USER is set by the environment.
For example if you run bash in a clean environment (env -i bash) USER is not set.
If you are not sure about the environment is better to use whoami.
NOte, one of the sublt things with sudo and looking at environment variables in one line.
(root) $ sudo -u someuser echo ${USER}
root
Will always return 'root' since it ${USER} is value substituted before the call to sudo.
However, if you escape the $ symbol and pass the statement instead of value.
(root) $ sudo -u someuser bash -c "echo \${USER}"
someuser
Will more likely return what you intended.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@HaoZeke
checking $USER is not working if the script is run with "sudo -u someuser", but whoami works correctly.