https://github.com/amanoteam/revf
Reverse the content of files
https://github.com/amanoteam/revf
c cpp rev text-utils util-linux
Last synced: about 1 month ago
JSON representation
Reverse the content of files
- Host: GitHub
- URL: https://github.com/amanoteam/revf
- Owner: AmanoTeam
- License: lgpl-3.0
- Created: 2023-09-28T02:48:50.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-10-06T16:48:24.000Z (over 2 years ago)
- Last Synced: 2025-12-31T03:27:53.062Z (5 months ago)
- Topics: c, cpp, rev, text-utils, util-linux
- Language: C
- Homepage:
- Size: 29.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RevF
A tiny CLI tool that reverses the content of files.
## Installation
You can obtain precompiled binaries from the [releases](https://github.com/AmanoTeam/revf/releases) page.
## Building
Clone this repository
```bash
git clone --depth='1' 'https://github.com/AmanoTeam/RevF.git'
```
Configure, build and install:
```bash
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.
```