An open API service indexing awesome lists of open source software.

https://github.com/jacnils/biner

Combine and separate text files
https://github.com/jacnils/biner

combine cpp replacement sed separate text

Last synced: about 1 year ago
JSON representation

Combine and separate text files

Awesome Lists containing this project

README

          

# biner

Combine and separate text files

## Dependencies

- C++17 compiler
- CMake

## Installation

- `mkdir build/ && cd build`
- `cmake ..`
- `cmake --build .`

If you want to install biner rather than build it:

- `cmake --install .`

## Usage

Run `biner -c file1 file2 file3 ... -o combined` to
combine a few text files and output it to `combined`.
If the `-o` parameter is omitted, it will be output to
standard input.

When editing the combined file, make sure to keep the biner
markers intact. Otherwise biner will fail to combine them.

To split the files, run `biner -s combined`. This will output
the same files in the current directory.

See `-h` for more information.

## License

Copyright(c) 2022-2024 Jacob Nilsson

This project is free software licensed under the
GNU General Public License version 3.

See LICENSE file for more information.