如何在 tcl 中执行 getpwnam/getpwuid 等
tcl 是否有执行 NSS 查找的标准方法(getpwnam、setpwent,...)
does tcl have a standard way of doing NSS lookups (getpwnam, setpwent,...)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Tcl 不会将它们公开为 API(它也没有真正在内部使用它们),而是使用 TclX 扩展包确实支持正是你想要的我相信。例如:
如果您正在使用 ActiveTcl,那么您肯定已经获得了可用的 TclX 软件包(已经安装或可以从 teapot 存储库中获取)。
Tcl doesn't expose those as APIs (it doesn't really use them internally either) but the TclX extension package does support exactly what you want I believe. For example:
If you're using ActiveTcl, you've definitely got the TclX package available (either already installed or available from the teapot repository).