Crate libaki_mline[][src]

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

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

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.

Modules

conf

Functions

execute

execute mline

execute_env