6

The Unix rev utility reverses lines in a file. How do I get this under Cygwin? Which package do I need to install?

Sjoerd
  • 1,448

2 Answers2

10

The package util-linux contains rev. I found out using the Debian package search.

Sjoerd
  • 1,448
0

Use tac or sort -r from GNU coreutils.

grawity
  • 501,077