fish shell 如何检查 root

fish shell 如何检查 root

有没有办法使用 fish shell 断言当前“用户”是 root(即脚本由 root 运行)?

我知道对于 bash 你可以检查欧盟身份证

答案1

仅靠鱼是不行的。我会写:

if test (id -u) -eq 0
    echo root
else
    echo not root
end

相关内容