One question to understand multiple parameters of sort command in Linux

One question to understand multiple parameters of sort command in Linux

The sort command is very commonly used, but it also has many parameters, such as: -o, -n, -u, -r, and you may not be able to remember how to use it at the moment. Here is a question that can be well combined with the above parameters to achieve a good memory effect.

Title: The data file data contains the following data:

4
1
3
5
1001
2
4
5

Please use one command to reverse the sort, remove duplicates and save the data in the data file as well. Final output:

1001
5
4
3
2
1

To achieve the above three requirements, we need to use the above parameters at the same time. The specific commands are as follows:

[root@localhost ~]# cat data | sort -nur -o data
1001
5
4
3
2
1

Remark:

  • -u parameter # Remove duplicates
  • -n parameter # Sort by natural numbers instead of ASCII
  • -r parameter # sort in descending order
  • -o parameter # write the file to the file instead of standard output

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • Detailed explanation of Linux text processing command sort
  • Detailed explanation of sort command in Linux text processing tool
  • Usage of linux sort command
  • Two ways to install mbstring extension in PHP under Linux system
  • How to install and use Linux Xtrabackup
  • How to add PHP extension module mbstring independently under Linux
  • Detailed explanation of Linux commands sort, uniq, tr tools

<<:  CocosCreator Getting Started Tutorial: Network Communication

>>:  Detailed explanation of the order of Mysql query results according to the order of ID in in()

Recommend

JavaScript setTimeout and setTimeinterval use cases explained

Both methods can be used to execute a piece of ja...

Basic implementation method of cross-component binding using v-model in Vue

Hello everyone, today we will talk about how to u...

Implementation example of uploading multiple attachments in Vue

Table of contents Preface Core code File shows pa...

MySQL Server IO 100% Analysis and Optimization Solution

Preface During the stress test, if the most direc...

HTML Tutorial: Unordered List

<br />Original text: http://andymao.com/andy...

MySQL Oracle and SQL Server paging query example analysis

Recently, I have done a simple study on the data ...

Detailed explanation of Socket (TCP) bind from Linux source code

Table of contents 1. A simplest server-side examp...

Table td picture horizontally and vertically centered code

Html code: Copy code The code is as follows: <t...

js date and time formatting method example

js date time format Convert the date and time to ...

How to view and close background running programs in Linux

1. Run the .sh file You can run it directly using...

MySQL-group-replication configuration steps (recommended)

MySQL-Group-Replication is a new feature develope...

Vue3+TypeScript implements a complete example of a recursive menu component

Table of contents Preface need accomplish First R...

Initial settings after installing Ubuntu 16 in the development environment

The office needs Ubuntu system as the Linux devel...

In-depth explanation of hidden fields, a new feature of MySQL 8.0

Preface MySQL version 8.0.23 adds a new feature: ...