Crates.io | aki-gsub |
lib.rs | aki-gsub |
version | 0.1.38 |
source | src |
created_at | 2021-02-05 03:43:11.714598 |
updated_at | 2024-06-20 00:15:23.566374 |
description | substitude text command, replace via regex. |
homepage | |
repository | https://github.com/aki-akaguma/aki-gsub |
max_upload_size | |
id | 350876 |
size | 114,175 |
the substitude text program.
aki-gsub --help
Usage:
aki-gsub [options]
substitude text command, replace via regex.
Options:
--color <when> use markers to highlight the matching strings
-e, --exp <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
Option Parameters:
<when> 'always', 'never', or 'auto'
<exp> regular expression can has capture groups
<fmt> format can has capture group: $0, $1, $2, ...
Environments:
AKI_GSUB_COLOR_SEQ_ST color start sequence specified by ansi
AKI_GSUB_COLOR_SEQ_ED color end sequence specified by ansi
Examples:
Leaving one character between 'a' and 'c', converts 'a' and 'c'
on both sides to '*':
echo "abcabca" | aki-gsub -e "a(.)c" -f "*\$1*"
result output:
*b**b*a
Converts 'a' to '*' and 'c' to '@':
echo "abcabca" | aki-gsub -e "a" -f "*" -e "c" -f "@"
result output:
*b@*b@*
cargo install aki-gsub
cargo deb
and install .deb into your local repository of debian package.
Leaving one character between 'a
' and 'c
',
converts 'a
' and 'c
' on both sides to '*
'.
command line:
echo "abcabca" | aki-gsub -e "a(.)c" -f "*\$1*"
result output:
*b**b*a
The \$1
mean 1st capture.
This extracts the email address and prints the name and address in commas.
command line:
echo "From:Red bear<aki.akaguma@example.com>" | aki-gsub -e "From: ?(.*)<([\w\d_.-]+@[\w\d_-]+\.[\w\d._-]+)>" -f "\$1, \$2"
result output:
Red bear, aki.akaguma@example.com
The \$1
mean 1st capture.
The \$2
mean 2nd capture.
You can specify multiple formats. See following.
command line:
echo "xxx yyy zzz" | aki-gsub -e "x(x)x" -f "a\$1a" -e "y(y)y" -f "b\$1b"
result output:
axa byb zzz
The \$1
mean 1st capture.
See fn execute()
for this library examples.
This project is licensed under either of
at your option.