Debian 9 脚本添加 sudo 用户

Debian 9 脚本添加 sudo 用户

我试图编写一个脚本来设置 sudo 用户。逐个复制粘贴 Debian 命令有效,但无法在脚本中运行。

Debian9=$(lsb_release -a 2>/dev/null | grep '^Description' | awk '{print $2}')
if [[ $Debian9 == Debian ]] ; then
    su root
    SU_user=$(stat -c '%U' ./)
    adduser "$SU_user" sudo
else
    other_distro_sudo_user_setup
fi
continue_script

line 5: adduser: command not found

不是真的必要,但我想知道是否可以以某种方式做到这一点?

相关内容