Crate libaki_gsub[][src]

the substitude text program.

Usage:
  aki-gsub \[options\]

replace string by rust lang.

Options:
  -e, --expression <exp>   regular expression
  -f, --format <fmt>       replace format
  -n, --quiet              no output unmach lines

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

Examples

command line:

echo "abcabca" | aki-gsub -e "a(b)c" -f "*\$1*"

result output:

*b**b*a

See fn execute() for this library examples.

Functions

execute

execute gsub