Linux命令根据第二个单词/字符进行排序

时间:2015-09-22 16:45:27

标签: perl shell

我有一个linux文件,其内容如下:

hey this 
is just
sample file

我想:

1。根据第二个字对三行进行排序,因此输出应为:

sample file
is just
hey this 

2。根据第二行的第二个字符对三行进行排序,因此输出为:

hey this 
sample file
is just

无论如何我可以在命令行上运行perl / unix命令(使用管道无关紧要)?

1 个答案:

答案 0 :(得分:2)

我得到了两个问题的答案:

按第二个字排序:resolved

按第二个字sort -k2 myfile的第二个字符排序