#command-line #filter #regex #linux-command #grep #text

bin+lib aki-mline

match line, regex text filter like a grep of linux command

22 releases

0.1.31 Jan 11, 2023
0.1.30 Jun 18, 2022
0.1.29 May 21, 2022
0.1.28 Nov 15, 2021
0.1.18 Mar 22, 2021

#839 in Text processing

27 downloads per month
Used in aki-txpr-macro

MIT/Apache

34KB
700 lines

aki-mline

crate Docs Rust Version Apache2/MIT licensed

the match line, regex text filter like a grep of linux command.

Features

  • the match line, regex text filter like a grep of linux command.
  • minimum support rustc 1.56.1 (59eed8a2a 2021-11-01)

Command help

aki-mline --help
Usage:
  aki-mline [options]

match line, regex text filter like a grep.

Options:
      --color <when>    use markers to highlight the matching strings
  -e, --exp <exp>       regular expression
  -s, --str <string>    simple string match
  -i, --inverse         output non-matching lines.

  -H, --help        display this help and exit
  -V, --version     display version information and exit

Option Parameters:
  <when>    'always', 'never', or 'auto'
  <exp>     regular expression
  <string>  simple string, non regular expression

Environments:
  AKI_MLINE_COLOR_SEQ_ST    color start sequence specified by ansi
  AKI_MLINE_COLOR_SEQ_ED    color end sequence specified by ansi

Quick install

  1. you can install this into cargo bin path:
cargo install aki-mline
  1. you can build debian package:
cargo deb

and install .deb into your local repository of debian package.

Examples

Command line example 1

Extract "arm.*-gnu" from the rustup target list

rustup target list | aki-mline -e "arm.*-gnu"

result output :

out rustup image

Command line example 2

Extract "apple" from the rustup target list

rustup target list | aki-mline -s "apple"

result output :

out rustup image 2

Library example

See fn execute() for this library examples.

Changelogs

This crate's changelog here.

License

This project is licensed under either of

at your option.

Dependencies

~3.5–4.5MB
~84K SLoC