mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-07 04:45:35 +00:00
18 lines
332 B
Plaintext
18 lines
332 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, osx]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# rev
|
|
|
|
> Reverse lines of text.
|
|
> More information: <https://keith.github.io/xcode-man-pages/rev.1.html>.
|
|
|
|
- Reverse each line in a file to `stdout`:
|
|
|
|
`rev {{path/to/file}}`
|
|
|
|
- Reverse each line from `stdin` to `stdout`:
|
|
|
|
`{{command}} | rev`
|