rev.1x (973B)
- .\" This file is part of Cross Unix Documentation
- .\" Copyright © 2019-2023 Haelwenn (lanodan) Monnier <contact@hacktivis.me>
- .\" SPDX-License-Identifier: CC-BY-4.0
- .Dd 2023-03-15
- .Dt REV 1x
- .Os
- .Sh PROLOG
- This manual page is part of
- .Lk https://hacktivis.me/git/cross-unix-documentation "Cross-Unix Documentation"
- which is an attempt to provide documentation of similarities and (noteworthy)
- differencies between Unix-like systems.
- To be used as an addition to the POSIX standard.
- .Sh NAME
- .Nm rev
- .Nd reverse lines characterwise
- .Sh SYNOPSIS
- .Nm
- .Op Ar file ...
- .Sh DESCRIPTION
- .Nm
- copies the specified files to the standard output, with the characters of each
- line being reversed.
- If no files are specified, standard input is read.
- .Sh EXAMPLES
- .Bd -literal
- $ cat example
- example.org
- example.com
- $ rev example
- gro.elpmaxe
- moc.elpmaxe
- $ rev example | rev
- example.org
- example.com
- .Ed
- .Sh SOURCE
- .Sh AUTHORS
- .An Haelwenn (lanodan) Monnier Aq Mt contact+c-u-d@hacktivis.me