aki-xtee is the program that copy standard input to each files and standard output.
aki-xtee copy standard input to each files and standard output.
text
aki-xtee --help
```
Usage:
aki-xtee [options] [
this is like the linux command tee
.
copy standard input to each
Options:
-a, --append
-H, --help display this help and exit -V, --version display version information and exit
Argument:
Examples: You can simple use. Just arrange the files: cat in-file | aki-xtee file1 file2.gz file3.xz file4.zst ```
cargo install aki-xtree
cargo deb
and install .deb into your local repository of debian package.
output "ABCDEFGH" to standard output and plain text file.
echo "ABCDEFGH" | aki-xtee out/plain.txt
result output :
ABCDEFGH
output "ABCDEFGH" to standard output and gzip text file.
echo "ABCDEFGH" | aki-xtee out/gztext.txt.gz
result output :
ABCDEFGH
output "ABCDEFGH" to standard output and xz text file.
echo "ABCDEFGH" | aki-xtee out/xztext.txt.xz
result output :
ABCDEFGH
output "ABCDEFGH" to standard output and zstd text file.
echo "ABCDEFGH" | aki-xtee out/xztext.txt.zst
result output :
ABCDEFGH
copy input to plain text file, gzip text file, xz text file and zstd text file.
aki-xtee out/plain.txt out/gztext.txt.gz out/xztext.txt.xz out/zstext.txt.zst
See [fn execute()
] for this library examples.