Open In App

rev command in Linux with Examples

rev command in Linux is used to reverse the lines characterwise. This utility basically reverses the order of the characters in each line by copying the specified files to the standard output. If no files are specified, then the standard input will read.

Syntax:



rev [option] [file...]

Example 1: Taking input from standard input



Example 2: Suppose we have a text file named as sample.txt

Using rev command on sample file. It will display the result on the terminal as follows:

Options:

Article Tags :