在知道谁运行脚本的同时,运行脚本作为另一个用户

发布于 2025-01-20 06:19:53 字数 80 浏览 0 评论 0原文

在Linux中,需要编写一个可以作为其他用户运行的Shell脚本(通过此脚本的DOAS权限),但是我需要在脚本中知道最初运行它的脚本。我该怎么做?

In Linux, need to write a shell script which can be ran as other users (via doas permissions for this one script), but I need to know in the script who ran it originally. How would I go about doing this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

昇り龍 2025-01-27 06:19:53

来自 Man Page

默认情况下,创建了一个新环境。变量homelogNamepathshell用户和umask (2)设置为适合目标用户的值。 doas_user设置为执行用户的名称doas

因此,请使用$ doas_user获取原始用户名。

From the man page

By default, a new environment is created. The variables HOME, LOGNAME, PATH, SHELL, and USER and the umask(2) are set to values appropriate for the target user. DOAS_USER is set to the name of the user executing doas.

So use $DOAS_USER to get the original username.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文