我有一台服务器运行,我使用PHP运行一个bash脚本来验证用户的某些信息。例如,我设置了一个webhosting服务器,为了能够在他们的帐户中添加另一个域,我想验证用户是否实际上是“客户”组的成员。这样做最好的方法是什么?
我已经搜索过谷歌,但所有这一切都是通过检查用户或组存在的方法,所以谷歌现在不是一个很大的帮助。
任何帮助将不胜感激。
尝试这样做:
原文链接:https://www.f2er.com/bash/388360.htmlusername=ANY_USERNAME if getent group customers | grep &>/dev/null "\b${username}\b"; then echo true else echo false fi
要么
username=ANY_USERNAME if groups $username | grep &>/dev/null '\bcustomers\b'; then echo true else echo false fi