如何从/ etc / passwd添加,删除编辑用户名

时间:2016-10-18 14:55:11

标签: c linux

我想在C程序中添加或删除或编辑/etc/passwd的用户名。是否有任何标准的Linux功能可以执行此类功能?

1 个答案:

答案 0 :(得分:2)

adduserdeluser。使用man deluser了解详情。

编辑:我错过了问题中的C部分。

在这种情况下,

man也是你的朋友。使用man 3 deluser,您可以询问stdlib中是否有任何类似的内容。请阅读https://unix.stackexchange.com/questions/3586/what-do-the-numbers-in-a-man-page-mean以获取更多信息。

事实并非如此。您可能想要在C:How do you write a C program to execute another program?

中调用unix工具