列出具有最小顺序的文件
我的目录中有一些文件如下(不一定已排序):
A_10
A_20
A_30
B_10
B_30
C_10
C_20
D_20
D_30
E_10
E_20
E_30
10
、20
和 30
是 A 的序列号,B,C,D,E 分别。
我只想选择那些具有所有 A,B,C,D,E
最小序列的文件 输出应该是:
A_10
B_10
C_10
D_20
E_10
有人可以帮助我吗?
I have some files in a directory as below (not necessarily sorted):
A_10
A_20
A_30
B_10
B_30
C_10
C_20
D_20
D_30
E_10
E_20
E_30
10
, 20
and 30
are the sequence numbers of A,B,C,D,E
respectively.
I want to select only those files with minimum sequence of all A,B,C,D,E
the output should be :
A_10
B_10
C_10
D_20
E_10
could anybody help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
或:
或:
or:
or:
在bash中:
In bash: