Reverse the content of files
Find a file
2023-10-06 09:41:53 -03:00
.github/workflows Initial commit 2023-10-06 09:41:53 -03:00
src Initial commit 2023-10-06 09:41:53 -03:00
tools Initial commit 2023-10-06 09:41:53 -03:00
.editorconfig Initial commit 2023-10-06 09:41:53 -03:00
.gitattributes Initial commit 2023-10-06 09:41:53 -03:00
CMakeLists.txt Initial commit 2023-10-06 09:41:53 -03:00
LICENSE Initial commit 2023-10-06 09:41:53 -03:00
README.md Initial commit 2023-10-06 09:41:53 -03:00

RevF

A tiny CLI tool that reverses the content of files.

Installation

You can obtain precompiled binaries from the releases page.

Building

Clone this repository

git clone --depth='1' 'https://github.com/AmanoTeam/RevF.git'

Configure, build and install:

cmake -B build -DCMAKE_BUILD_TYPE=MinSizeRel
cmake --build ./build
cmake --install ./build

Usage

Available options:

$ revf --help
usage: revf [-h] [-v] [-r]

Reverse the content of files.

options:
  -h, --help       Show this help message and exit.
  -v, --version    Display the revf version and exit.
  -r, --recursive  Recurse down into directories.