Open In App

rev command in Linux with Examples

Last Updated : 24 May, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

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:

  • rev -V: This option display the version information and exit.
    rev -V

  • rev -h: This option will show the help message and exit.
    rev -h


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads