| Crates.io | aki-txpr-macro |
| lib.rs | aki-txpr-macro |
| version | 0.2.0 |
| created_at | 2021-04-26 22:56:23.731193+00 |
| updated_at | 2025-09-16 05:22:24.030134+00 |
| description | the more easy to use libaki-*. |
| homepage | |
| repository | https://github.com/aki-akaguma/aki-txpr-macro |
| max_upload_size | |
| id | 389928 |
| size | 52,916 |
the more easy to use libaki-*.
The pipe line text processing.
shell command:
aki-xcat -n -f "fixtures/target-list.txt" |\
aki-mline -e "gnu" |\
aki-stats -a --locale "en"
convert this to rust:
let (next_in, handles) = pipe_line! {
(next_in, handles);
libaki_xcat "xcat" "-n" "-f" "fixtures/target-list.txt";
libaki_mline "mline" "-e" "gnu";
libaki_stats "stats" "-a" "--locale" "en";
};
the full rust example:
fn test_02() -> anyhow::Result<String> {
use aki_txpr_macro::*;
use std::io::BufRead;
//
let next_in = runnel::medium::stdio::StdIn::default();
let handles = Vec::new();
let (next_in, handles) = pipe_line! {
(next_in, handles);
libaki_xcat "xcat" "-n" "-f" "fixtures/target-list.txt";
libaki_mline "mline" "-e" "gnu";
libaki_stats "stats" "-a" "--locale" "en";
};
// main thread
let string = {
let sout = runnel::medium::stringio::StringOut::default();
#[rustfmt::skip]
let sioe = runnel::RunnelIoeBuilder::new().pg_in(next_in).pg_out(sout).build();
for line in sioe.pg_in().lines() {
let line_s = line?;
let line_ss = line_s.as_str();
#[rustfmt::skip]
sioe.pg_out().lock().write_fmt(format_args!("{}\n", line_ss))?;
}
#[rustfmt::skip]
let x = sioe.pg_out().lock().buffer_to_string();
x
};
//
for handle in handles {
let _ = handle.join();
}
//
Ok(string)
}
| command | description |
|---|---|
| aki-gsub | substitude text command, replace via regex. |
| aki-mcolor | mark up text with color |
| aki-mcycle | mark up text with cycling color |
| aki-mline | match line, regex text filter like a grep of linux command. |
| aki-resort | sort lines of text. You can use regex to specify the KEY. |
| aki-stats | output the statistics of text, like a wc of linux command. |
| aki-unbody | output first or last n lines, like a head and tail of linux command. |
| aki-xcat | concatenate files that are plain, gzip, xz and zstd. |
| aki-xtee | copy standard input to each files and standard output. |
This project is licensed under either of
at your option.