aki-gsub is the substitude text program.
aki-gsub is the substitude text by regex.
command:
`aki-gsub` -H
cargo install aki-gsub
cargo deb
and install .deb into your local repository of debian package.
command line:
cat text-file | aki-gsub -e "^name: *(.*)$" -f "\$1"
command line:
text
echo "abcabca" | aki-gsub -e "a(b)c" -f "*\$1*"
result output:
text
*b**b*a