Crate libaki_mline[][src]

the match line, regex text filter program like grep.

Usage:
  aki-mline [options]

match line, regex text filter, like grep.

      --color <when>   use markers to highlight the matching strings
  -e, --exp <exp>      regular expression
  -v, --invert-match   select non-matching lines

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

Env:
  RUST_GREP_COLOR_ST   color start sequence
  RUST_GREP_COLOR_ED   color end sequence

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

Library example

See fn execute() for this library examples.

Functions

execute

execute mline