README.md

July 31, 2023 ยท View on GitHub

AWK Lab

Run tests

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
    • 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 CLI
      • awk -f parse_cli_lib.awk -f reparse_cli.awk