Awesome
AWK Lab
My experiments with AWK.
- Experiments with JSON
- nat_sort.awk - Natural sorting
- CLI
- parse_cli_0_lib.awk - basic utility to parse CLI
" aaa 'bbb cc' 'd\'ee' "
->["aaa", "bbb cc", "d'ee"]
- Not shell-compatible, this is why we came up with
parse_cli_lib_1.awk
- Not shell-compatible, this is why we came up with
- parse_cli_1_lib.awk - basic utility to parse CLI
" aaa 'bbb cc' $'d\'ee' "
->["aaa", "bbb cc", "d'ee"]
- reparse_cli.awk - reparses
$0
to make Awk parsing closer to CLIawk -f parse_cli_lib.awk -f reparse_cli.awk
- parse_cli_0_lib.awk - basic utility to parse CLI