Sha256: 266bfecbf684126f2a9534c1ed036b62d3e35330fbbd4ae04788817b40b9f56b

Contents?: true

Size: 1.19 KB

Versions: 3

Compression:

Stored size: 1.19 KB

Contents

# ronin-rot 1 "2023-02-01" Ronin "User Manuals"

## NAME

ronin-rot - Rotates each character of data within an alphabet

## SYNOPSIS

`ronin rot` [*options*] [*FILE* ...]

## DESCRIPTION

Rotates each character of data with an alphabet.

## ARGUMENTS

*FILE*
: The optional file to read and process. If no *FILE* arguments are given,
  input will be read from `stdin`.

## OPTIONS

`-f`, `--file` *FILE*
: Optional file to process.

`--string` *STRING*
: Optional string to process.

`-M`, `--multiline`
: Process each line of input separately.

`-n`, `--keep-newlines`
: Preserves newlines at the end of each line.

`-A`, `--alphabet` `ABC...`
: Alphabet characters to rotate characters within.

`-n`, `--modulo` *NUM*
: Number of characters to rotate forwards or backwards. Defaults to 13 if not
  given.

`-h`, `--help`
: Print help information.

## EXAMPLES

ROT-13 encode a string:

    $ ronin rot --string "The quick brown fox jumps over the lazy dog"

ROT encode a string with a custom rotation number:

    $ ronin rot -n 3 --string "The quick brown fox jumps over the lazy dog"

## AUTHOR

Postmodern <postmodern.mod3@gmail.com>

## SEE ALSO

[ronin-encode](ronin-encode.1.md) [ronin-rot](ronin-rot.1.md)

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ronin-2.1.1 man/ronin-rot.1.md
ronin-2.1.0 man/ronin-rot.1.md
ronin-2.1.0.rc1 man/ronin-rot.1.md