mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-14 00:47:30 +00:00
2fa51f1843
Fixes #8866
14 lines
328 B
Fish
14 lines
328 B
Fish
# To know if the user is root. Used by several prompts to display something
|
|
# else if the user is root.
|
|
|
|
function fish_is_root_user --description "Check if the user is root"
|
|
if test "$EUID" = 0 2>/dev/null
|
|
return 0
|
|
end
|
|
|
|
if contains -- $USER root toor Administrator
|
|
return 0
|
|
end
|
|
|
|
return 1
|
|
end
|