Linux 将组条目写入 /etc/group 的函数
在查看应用程序的代码时,我遇到了 putpwent()
函数,它会写入密码条目
。是否有类似的函数将组条目
写入文件。
While going through the code of an application, i came across the putpwent()
function which writes a password entry
. Is there a function similar to this which writes a group entry
into a file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
putgrent()
会做你想做的事。putgrent()
will do what you want.man 3 putgrent
:putgrent - 将组数据库条目写入文件
man 3 putgrent
:putgrent - write a group database entry to a file
将“pw”替换为“gr”: http ://www.kernel.org/doc/man-pages/online/pages/man3/putgrent.3.html
Replace the 'pw' with 'gr': http://www.kernel.org/doc/man-pages/online/pages/man3/putgrent.3.html