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
- Host: GitHub
- URL: https://github.com/jacnils/biner
- Owner: jacnils
- License: gpl-3.0
- Created: 2024-10-31T02:47:21.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-31T02:47:25.000Z (over 1 year ago)
- Last Synced: 2025-02-19T08:23:30.979Z (about 1 year ago)
- Topics: combine, cpp, replacement, sed, separate, text
- Language: C++
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.