Skip to main content
ubuntuask.com

Back to all posts

How to Read A File In Reverse Order In Linux?

Published on
5 min read
How to Read A File In Reverse Order In Linux? image

Best Tools to Read Files in Reverse Order on Linux to Buy in October 2025

1 USB 3.0 SD Card Reader for PC, Laptop, Mac, Windows, Linux, Chrome, SDXC, SDHC, SD, MMC, RS-MMC, Micro SDXC Micro SD, Micro SDHC Card and UHS-I Cards - No SD Card Included. (USB 3.0 SD -Black2)

USB 3.0 SD Card Reader for PC, Laptop, Mac, Windows, Linux, Chrome, SDXC, SDHC, SD, MMC, RS-MMC, Micro SDXC Micro SD, Micro SDHC Card and UHS-I Cards - No SD Card Included. (USB 3.0 SD -Black2)

  • DUAL SLOT DESIGN: SEAMLESSLY CONNECT SD & MICRO SD CARDS ON ANY DEVICE.

  • BLAZING 5GBPS SPEED: TRANSFER LARGE FILES INSTANTLY, SAVE TIME, BOOST EFFICIENCY.

  • WIDE COMPATIBILITY: WORKS EFFORTLESSLY WITH MULTIPLE OS, NO DRIVERS NEEDED.

BUY & SAVE
$3.99 $4.99
Save 20%
USB 3.0 SD Card Reader for PC, Laptop, Mac, Windows, Linux, Chrome, SDXC, SDHC, SD, MMC, RS-MMC, Micro SDXC Micro SD, Micro SDHC Card and UHS-I Cards - No SD Card Included. (USB 3.0 SD -Black2)
2 External DVD Drive USB 3.0 TYPE C USB C Portable CD/DVD +/-RW Disk Drive External CD Drive DVD Player for Laptop CD/DVD ROM Burner Reader Compatible with Laptop Desktop PC Windows Linux OS Apple Mac

External DVD Drive USB 3.0 TYPE C USB C Portable CD/DVD +/-RW Disk Drive External CD Drive DVD Player for Laptop CD/DVD ROM Burner Reader Compatible with Laptop Desktop PC Windows Linux OS Apple Mac

  • UNIVERSAL COMPATIBILITY: WORKS WITH MAC, WINDOWS, LINUX; SUPPORTS MANY DISC FORMATS.

  • HIGH-SPEED PERFORMANCE: UP TO 24X CD AND 8X DVD SPEEDS VIA USB 3.0.

  • EFFORTLESS SETUP: PLUG AND PLAY DESIGN ENSURES EASY, LAG-FREE OPERATION.

BUY & SAVE
$19.99
External DVD Drive USB 3.0 TYPE C USB C Portable CD/DVD +/-RW Disk Drive External CD Drive DVD Player for Laptop CD/DVD ROM Burner Reader Compatible with Laptop Desktop PC Windows Linux OS Apple Mac
3 Hicober USB C to SD, Micro SD Memory Card Reader, Type C to SD Card Reader Adapter 2TB Capacity for MacBook Camera Android Windows Linux and Other Type C Device-Space Grey

Hicober USB C to SD, Micro SD Memory Card Reader, Type C to SD Card Reader Adapter 2TB Capacity for MacBook Camera Android Windows Linux and Other Type C Device-Space Grey

  • FAST 5GBPS TRANSFERS: SHARE PHOTOS INSTANTLY WITH PEAK SPEEDS UP TO 5GBPS.

  • COMPATIBLE WITH MANY DEVICES: WORKS WITH 2TB CARDS AND MAJOR BRANDS LIKE SAMSUNG.

  • DURABLE & PORTABLE DESIGN: BUILT TO LAST, COMPACT SIZE FOR EASY TRAVEL CONVENIENCE.

BUY & SAVE
$11.33 $19.99
Save 43%
Hicober USB C to SD, Micro SD Memory Card Reader, Type C to SD Card Reader Adapter 2TB Capacity for MacBook Camera Android Windows Linux and Other Type C Device-Space Grey
4 Hilitand PCIE Card Reader PCIE Express Card Reader Plug and Play PCIE Board for/OS X/Linux

Hilitand PCIE Card Reader PCIE Express Card Reader Plug and Play PCIE Board for/OS X/Linux

  • OVERLOAD PROTECTION FOR MEMORY CARDS GUARANTEES DATA SAFETY.
  • SEAMLESS COMPATIBILITY WITH OS X, LINUX, AND MORE SYSTEMS.
  • HIGH-SPEED FILE TRANSFERS UP TO 16GBPS FOR EFFICIENT COPYING.
BUY & SAVE
$28.06
Hilitand PCIE Card Reader PCIE Express Card Reader Plug and Play PCIE Board for/OS X/Linux
5 USB C USB3.0 SD Card Reader, 5in1 Multi Card Reader for SD/TF/CF/Micro SD/MS/M2, Drive Free for iPhone 15 pro max/Windows/Mac/Linux/Android (USB3.0 and Type-C)

USB C USB3.0 SD Card Reader, 5in1 Multi Card Reader for SD/TF/CF/Micro SD/MS/M2, Drive Free for iPhone 15 pro max/Windows/Mac/Linux/Android (USB3.0 and Type-C)

  • VERSATILE COMPATIBILITY: WORKS WITH PCS, TABLETS, AND SMARTPHONES.
  • HIGH-QUALITY BUILD: DURABLE ALUMINUM ALLOY FOR LONGER LIFESPAN.
  • FAST TRANSFERS: USB 3.0 SPEEDS UP TO 5GBPS FOR EFFICIENCY.
BUY & SAVE
$15.99
USB C USB3.0 SD Card Reader, 5in1 Multi Card Reader for SD/TF/CF/Micro SD/MS/M2, Drive Free for iPhone 15 pro max/Windows/Mac/Linux/Android (USB3.0 and Type-C)
6 Linux Basics for Hackers: Getting Started with Networking, Scripting, and Security in Kali

Linux Basics for Hackers: Getting Started with Networking, Scripting, and Security in Kali

BUY & SAVE
$23.74 $39.99
Save 41%
Linux Basics for Hackers: Getting Started with Networking, Scripting, and Security in Kali
7 External DVD Drive USB 3.0 Type-C USB C Portable DVD Player for Laptop CD DVD +/-RW Disk Drive CD ROM Burner Writer CD/DVD Burner Reader Disk Duplicator for Laptop Desktop Windows Linux MacBook

External DVD Drive USB 3.0 Type-C USB C Portable DVD Player for Laptop CD DVD +/-RW Disk Drive CD ROM Burner Writer CD/DVD Burner Reader Disk Duplicator for Laptop Desktop Windows Linux MacBook

  • VERSATILE BURNER AND PLAYER FOR MUSIC, MOVIES, AND DATA BACKUPS.
  • BROAD OS COMPATIBILITY: WORKS WITH ALL MAJOR SYSTEMS AND LAPTOPS.
  • HIGH-SPEED DATA TRANSFER OF UP TO 5GBPS, NO LAG OR DISTORTION!
BUY & SAVE
$16.99 $19.99
Save 15%
External DVD Drive USB 3.0 Type-C USB C Portable DVD Player for Laptop CD DVD +/-RW Disk Drive CD ROM Burner Writer CD/DVD Burner Reader Disk Duplicator for Laptop Desktop Windows Linux MacBook
+
ONE MORE?

To read a file in reverse order in Linux, you can use the combination of some Linux commands. Here's one possible approach:

  1. Firstly, you can use the tac command, which is the reverse version of cat. It reads lines from a file and prints them in reverse order. For example, tac file.txt will output the contents of file.txt in reverse order.
  2. In case you want to view the file interactively or scroll through it, you can pipe the output of tac to the less command. This allows you to scroll up and down through the reversed file. For instance, tac file.txt | less will display file.txt in reverse order using the less pager.
  3. If you want to read the file in reverse order but view it all at once, you can redirect the output of tac to another file. This will save the reversed contents to a new file. For example, tac file.txt > reversed.txt will create a new file named reversed.txt with the contents of file.txt in reverse order.

These methods should help you read a file in reverse order in Linux using command-line utilities.

How to display the last line of a file using Linux commands?

To display the last line of a file using Linux commands, you can use the tail command with the -n option.

The syntax is as follows:

tail -n 1

where <filename> is the name of the file you want to display the last line of.

For example, to display the last line of a file named "example.txt", you would run:

tail -n 1 example.txt

This command will output the last line of the file on the terminal.

What is the syntax for removing duplicate lines from a file read in reverse order using uniq in Linux?

To remove duplicate lines from a file read in reverse order using uniq in Linux, you can combine the use of the tac command to reverse the file and the uniq command to remove duplicates. Here is the syntax:

tac <file_name> | uniq

Explanation:

  1. tac command is used to reverse the lines of a file.
  2. should be replaced with the name of the file you want to process.
  3. The output of tac is then piped (|) to the uniq command to remove duplicate lines.

Note: The uniq command requires that duplicate lines be adjacent to each other, so if your file has duplicated lines that are not consecutive, this method will not remove them.

How to reverse the order of lines in a file using sed command in Linux?

To reverse the order of lines in a file using the sed command in Linux, you can use the following command:

sed '1!G;h;$!d' filename

Here's how it works:

  • The sed command is used to manipulate and transform text.
  • The expression '1!G;h;$!d' is the sed script that will be executed.
  • 1!G appends each line to the "hold space" (a temporary buffer), except for the first line.
  • h copies the contents of the "pattern space" (current line) to the "hold space".
  • $!d deletes all lines except the last line.
  • filename should be replaced with the name of the file you want to reverse the lines in.

This command will print out the reversed lines of the file on the console. If you want to save the result in a new file, you can use the shell redirection operator (>) like so:

sed '1!G;h;$!d' filename > newfile

This will save the reversed lines in a new file called newfile.

How can I read a file in reverse order and replace a specific word with another using sed command in Linux?

To read a file in reverse order and replace a specific word with another using the sed command in Linux, you can make use of the tac command to reverse the order of lines and then pipe the output to the sed command for performing the replacement.

Here's an example command:

tac filename.txt | sed -e 's/old_word/new_word/g' > output.txt

Explanation:

  1. tac filename.txt: This command reads the contents of filename.txt in reverse order. The output is then passed to the next command through the pipe.
  2. sed -e 's/old_word/new_word/g': This command replaces all occurrences of old_word with new_word in the input stream. Modify old_word and new_word with your specific words.
  3. > output.txt: This redirection operator redirects the output of the above command to output.txt file. You can change output.txt to a different filename if desired.

After running the above command, the file filename.txt will be read in reverse order, and all occurrences of old_word will be replaced with new_word. The modified content will be saved in the output.txt file.

How to read a file in reverse order and redirect the output to another file?

To read a file in reverse order and redirect the output to another file, you can follow these steps:

  1. Open the input file using a file object in read mode.

input_file = open('input_file.txt', 'r')

  1. Read the contents of the input file and store them in a list.

file_lines = input_file.readlines()

  1. Reverse the order of the list.

reversed_lines = file_lines[::-1]

  1. Open the output file using another file object in write mode.

output_file = open('output_file.txt', 'w')

  1. Write the reversed lines to the output file.

output_file.writelines(reversed_lines)

  1. Close both the input and output files.

input_file.close() output_file.close()

Here's the complete code snippet:

input_file = open('input_file.txt', 'r') file_lines = input_file.readlines() reversed_lines = file_lines[::-1]

output_file = open('output_file.txt', 'w') output_file.writelines(reversed_lines)

input_file.close() output_file.close()

Make sure to replace 'input_file.txt' with the actual path or filename of your input file, and 'output_file.txt' with the desired path or filename of the output file.