使用awk排序?
我有一个以字符串开头的文件,如下所示
x1, 1, 2, ...
x2, 1, 2, ...
x10, 1, 3, ...
x22, 1, 3, ...
x14, 1, 2, ...
可以使用 awk 对此文件进行排序,以便我得到按数字排序的输出,例如以 x1 开头,后跟 x2 的行,.. 等等 ?
I have a file that starts with strings as follows
x1, 1, 2, ...
x2, 1, 2, ...
x10, 1, 3, ...
x22, 1, 3, ...
x14, 1, 2, ...
Is is possible to sort this file using awk, so that I get the output that is numerically sorted, e.g. lines starting with x1, followed by x2,.. and so on ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果像 Dennis 所说的那样,您的前缀是固定宽度的,请尝试使用:
在我的例子中,使用 Mac OS X 附带的排序,我必须使用
-g
开关。If, like Dennis said, your prefix is of fixed width, try using:
In my case, using the sort that came with Mac OS X, I had to use the
-g
switch.