Crates.io | aki-xcat |
lib.rs | aki-xcat |
version | 0.1.36 |
source | src |
created_at | 2021-02-07 14:21:48.460507 |
updated_at | 2024-06-19 15:33:00.487259 |
description | concatenate files that are plain, gzip, xz and zstd. |
homepage | |
repository | https://github.com/aki-akaguma/aki-xcat |
max_upload_size | |
id | 351919 |
size | 98,565 |
concatenate files that are plain, gzip, xz and zstd.
aki-xcat --help
Usage:
aki-xcat [options] [<file>...]
this is like a cat, zcat, xzcat, zstdcat and lz4cat.
with no <file> or when <file> is -, read standard input.
automatic discovery file type: plain, gz, xz, zst and lz4.
Options:
-n, --number output line number for each lines
-f, --file-name output file name for each lines
--path-name output path name for each lines
-p, --pipe-in <num> read from pipe <num> [unimplemented]
-H, --help display this help and exit
-V, --version display version information and exit
Argument:
<file> utf-8 encoded text file. A compressed file of it by gzip, xz, zstd, lz4.
Examples:
You can simple use. Just arrange the files.
aki-xcat file1 file2.gz file3.xz file4.zst file5.lz4
cargo install aki-xcat
cargo deb
and install .deb into your local repository of debian package.
The input file used in this example looks like this:
cat fixtures/plain.txt
result output :
abcdefg
hijklmn
zcat fixtures/gztext.txt.gz
result output :
ABCDEFG
HIJKLMN
concatenate plain text file and gzip text file.
aki-xcat fixtures/plain.txt fixtures/gztext.txt.gz
result output :
abcdefg
hijklmn
ABCDEFG
HIJKLMN
concatenate plain text file, gzip text file, xz text file, zstd text file and lz4 text file.
aki-xcat fixtures/plain.txt fixtures/gztext.txt.gz fixtures/xztext.txt.xz fixtures/zstext.txt.zst fixtures/lz4text.txt.lz4
concatenate plain text file and gzip text file.
aki-xcat -n fixtures/plain.txt fixtures/gztext.txt.gz
result output :
1 abcdefg
2 hijklmn
3 ABCDEFG
4 HIJKLMN
concatenate plain text file and gzip text file.
aki-xcat -n -f fixtures/plain.txt fixtures/gztext.txt.gz
result output :
"plain.txt" 1 abcdefg
"plain.txt" 2 hijklmn
"gztext.txt.gz" 1 ABCDEFG
"gztext.txt.gz" 2 HIJKLMN
concatenate plain text file and gzip text file.
aki-xcat -n --path-name fixtures/plain.txt fixtures/gztext.txt.gz
result output :
"fixtures/plain.txt" 1 abcdefg
"fixtures/plain.txt" 2 hijklmn
"fixtures/gztext.txt.gz" 1 ABCDEFG
"fixtures/gztext.txt.gz" 2 HIJKLMN
See fn execute()
for this library examples.
This project is licensed under either of
at your option.