将字符串映射到唯一的数字?
是否有一个很好的 bash oneliner 将文件内的字符串映射到唯一的数字?
例如,
a
a
b
b
c
c
应该转换为
1
1
2
2
3
3
我目前正在用 C++ 实现它,但 bash 单行代码会很棒。
Is there a nice bash one liner to map strings inside a file to a unique number?
For instance,
a
a
b
b
c
c
should be converted into
1
1
2
2
3
3
I am currently implementing it in C++ but a bash one-liner would be great.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这维护了一个名为
ids
的关联数组。每次它找到一个新字符串时,它都会为其分配一个单调递增的 id++i
。例子:
This maintains an associative array called
ids
. Each time it finds a new string it assigns it a monotically increasing id++i
.Example:
这里的 awk 解决方案很好,但是这里在纯 bash 中使用相同的方法(> = 4)
The awk solutions here are fine, but here's the same approach in pure bash (>=4)
(当然,不完全是一行。)
(Not exactly one line, ofcourse.)
没有
if
的轻微修改slight modification without the
if