logo

cross-unix-documentation

documentation of similarities and (noteworthy) differencies between Unix systems git clone https://hacktivis.me/git/cross-unix-documentation.git

rev.1x (973B)


  1. .\" This file is part of Cross Unix Documentation
  2. .\" Copyright © 2019-2023 Haelwenn (lanodan) Monnier <contact@hacktivis.me>
  3. .\" SPDX-License-Identifier: CC-BY-4.0
  4. .Dd 2023-03-15
  5. .Dt REV 1x
  6. .Os
  7. .Sh PROLOG
  8. This manual page is part of
  9. .Lk https://hacktivis.me/git/cross-unix-documentation "Cross-Unix Documentation"
  10. which is an attempt to provide documentation of similarities and (noteworthy)
  11. differencies between Unix-like systems.
  12. To be used as an addition to the POSIX standard.
  13. .Sh NAME
  14. .Nm rev
  15. .Nd reverse lines characterwise
  16. .Sh SYNOPSIS
  17. .Nm
  18. .Op Ar file ...
  19. .Sh DESCRIPTION
  20. .Nm
  21. copies the specified files to the standard output, with the characters of each
  22. line being reversed.
  23. If no files are specified, standard input is read.
  24. .Sh EXAMPLES
  25. .Bd -literal
  26. $ cat example
  27. example.org
  28. example.com
  29. $ rev example
  30. gro.elpmaxe
  31. moc.elpmaxe
  32. $ rev example | rev
  33. example.org
  34. example.com
  35. .Ed
  36. .Sh SOURCE
  37. .Sh AUTHORS
  38. .An Haelwenn (lanodan) Monnier Aq Mt contact+c-u-d@hacktivis.me