1

让 IPython 脚本检查用户当前是否为 root 的正确方法是什么?

以下是我在 bash 脚本中的操作方式:

if [ $(id -u) != "0" ];then
   echo "This script must be run as root."
   exit 1
fi

有没有比使用“!id”或“!whoami”更好的方法?

4

1 回答 1

1

在 *nix 操作系统上geteuid()os模块中有.

于 2012-06-01T02:44:08.837 回答