
To sort a file in reverse order make use of the command sort.
Sort File in Rever Alphabetical Order:
Let's take a text file that has unsorted contents as shown below,
myUnsortedFile.txtAmerica
Brazil
Japan
China
India
Russia
Ukraine
France
Germany
To sort this file in revere order make use of the sort command with -r option for reverse,
# sort -r myUnsortedFile.txt
Ukraine
Russia
Japan
India
Germany
France
China
Brazil
America
What is the file has lines that contain special characters and numbers,
cat myFile.txt
America
1
Brazil
#
Japan
@
China
India
!
Russia
Ukraine
2
France
Germany
After Reverse Sorting:
# sort -r myFile.txt
Ukraine
Russia
Japan
India
Germany
France
China
Brazil
America
@
2
1
#
!
Sort File in Rever Numeric Order:
File:1 America
2 Brazil
3 Japan
4 China
5 India
6 Russia
7 Ukraine
8 France
9 Germany
Make use of -n and -r options together to sort the contents of the file in reverse numeric order,
# sort -nr myFile.txt
9 Germany
8 France
7 Ukraine
6 Russia
5 India
4 China
3 Japan
2 Brazil
1 America
More Posts related to Bash,
- How to start or open a new bourne-again shell (bash) session on Windows using Command Line CMD
- How to create new user account in Windows bash
- Bash Hello World! Script Tutorial
- How to Compare Strings in Bash
- How to see Created Accessed Modified and Changed dates of a file using bash terminal command
- Command to Sort File In Reverse Order [Unix/Linux/macOS]
- Bash command to wait for seconds
- [fix] bash: ssh: command not found
- bash: netstat: command not found
- Know Bash shell version command
- List all Username and User ID using Bash Command
- How to use Autocomplete and Autosuggestion in Shell Commands
- How to know the current shell you are logged in?
- [Fix] bash: script.sh: /bin/bash^M: bad interpreter: No such file or directory
- 'pwd' is not recognized as an internal or external command, operable program or batch file. [Windows]
- How to Kill a port using bash terminal command?
- How to fix bash ping command not found error
- Install Bash Completion on macOS
- bash get year 2021 calendar
- How to check your IP using bash for Windows?
- Bash For Loop Example
- Fix bash: script.sh: Permission denied Error
More Posts:
- Get cURL command from Chrome Inspect Network HTTP URL - cURL
- Java 8 JDBC: Insert Timestamp Code Example - Java
- Fix - Microsoft Windows Error Code: 0xA00F4244 NoCamerasAreAttached - Microsoft
- Change the default download location for Mac Safari - MacOS
- Remove ActionBar from Activity that extends appcompat-v7 - Android
- Solution: AWS S3 CLI Command AccessDenied - S3
- Delete file using PHP code : unlink() - PHP
- Create a Directory using Java Code - Java