awk 或 perl 文件编辑&操纵
我有一个标准的 passwd 文件 &用户映射文件 - 将 unix 名称(例如 jbloggs)与 AD 帐户名称(例如 bloggsjoe)映射,格式如下:
jbloggs bloggsjoe
杰史密斯·史密斯约翰
...等等
如何编辑 passwd 文件以将原始 unix 名称与 AD 帐户名称交换,以便 passwd 文件的每一行都有 AD 帐户名称。
感谢对 Perl 学习者的任何帮助。
I have a standard passwd file & a usermap file - which maps unix name (eg jbloggs) with AD account name (eg bloggsjoe) in the format:
jbloggs bloggsjoe
jsmith smithjohn
... etc.
How can I edit the passwd file to swap the original unix name with the AD account name so each line of the passwd file has the AD account name instead.
Appreciate any help for a perl learner.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这是 awk oneliner 来做到这一点
here's a awk one liner to do that
使用 Perl,读入 AD 文件并填充 AD-Unix 散列,然后您可以使用该散列来执行单行替换。当然,这假设您没有重复的用户名。
(未经测试)
With Perl, read the AD file in and populate an AD-Unix hash, which you can then use to perform the replacement with a one-liner. This assumes that you have no duplicate usernames, of course.
(Untested)
使用
Passwd::Unix
。它将协调 /etc/passwd、/etc/ 的编辑影子,和 /etc/group 给你。在尝试编辑这些文件之前,请务必先对其进行备份。Use
Passwd::Unix
. It will coordinate the editing of /etc/passwd, /etc/shadow, and /etc/group for you. Be sure to backup these files before you try editing them.