A command line utility for file concatenation, featuring:
STDIN
or arg -i
.STDOUT
or a specific file given by arg -o
.See fcc --help
for more help information on how to use this command line utility. If you want a rust library that provides similar functionalities, see admerge.
Assumes we have three text files 1.txt
, 2.txt
and 3.txt
in current working directory.
The content of 1.txt
is:
bash
111 112 113
121 122 123
131 132 133
The content of 2.txt
is:
bash
211 212 213
221 222 223
231 232 233
The content of 3.txt
is:
bash
311 312 313
321 322 323
331 332 333
bash
find [1-3].txt | fcc
or
bash
echo [1-3].txt | fcc
or
bash
fcc -i 1.txt 2.txt 3.txt
will print the following text to stdout
bash
111 112 113
121 122 123
131 132 133211 212 213
221 222 223
231 232 233311 312 313
321 322 323
331 332 333
--newline
bash
echo [1-3].txt | fcc -n
will print the following text to stdout:
```bash 111 112 113 121 122 123 131 132 133 211 212 213 221 222 223 231 232 233 311 312 313 321 322 323 331 332 333
```
skip-head=1
and skip-tail=1
bash
echo [1-3].txt | fcc -n --skip-head=1 --skip-tail=1
will print the following text to stdout:
```bash 121 122 123 221 222 223 321 322 323
```
newline
and --headonce
bash
echo [1-3].txt | fcc -n --headonce
will print the following text to stdout:
```bash 111 112 113 121 122 123 131 132 133 221 222 223 231 232 233 321 322 323 331 332 333
```
--newline
and `padding="padding between\n"bash
echo [1-3].txt | fcc -n --padding="padding between
"
will print the following text to stdout:
```bash 111 112 113 121 122 123 131 132 133 padding between 211 212 213 221 222 223 231 232 233 padding between 311 312 313 321 322 323 331 332 333
```
Binaries for Windows, Linux and macOS are available from Github.
You can also compile the binary from source using Cargo:
bash
git clone git://github.com/mapkts/fcc
cd fcc
cargo build --release
Compilation will probably take a few minutes depending on your machine. The
binary will end up in ./target/release/fcc
.
fcc
is distributed under the terms of both the MIT license and the Apache License (Version 2.0).
See the LICENSE-APACHE and LICENSE-MIT files in this repository for more information.