我是linux
的新人。我需要从我的 c 应用程序中的给定用户 ID 知道用户名。是否有任何linux api
功能可用于获取此功能?
谢谢
如果你想
从c程序中获取用户名,那么getpwuid
可能是最简单的方法。男子在这里输入:http://man7.org/linux/man-pages/man3/getpwnam.3.html
从命令行中,我只需通过 passwd 进行 grep:
grep 1000 /etc/passwd | cut -f1 -d: