Linux sort命令

2024年11月26日 Linux sort命令 极客笔记

Linux sort命令:对文件中的数据进行排序

Linux sort命令 功能描述

使用sort命令可以对文件中的数据进行排序,并将结果显示在标准输出上。

Linux sort命令 语法

sort [选项] [文件]

命令中各选项的含义如表所示。

Linux sort命令 示例

排序文件textfile1数据,并显示在屏幕上

[root@rhel ~]# cat textfile1
a
b
c
//查看文件textfile1的文件内容
[root@rhel ~]# sort textfile1
a
b
c

读取文件textfile1内容,以倒序排序该文件并显示在屏幕上

[root@rhel ~]# sort -r textfile1
c
b
a

本文链接:http://so.lmcjl.com/news/18511/

展开阅读全文