awkrs 0.1.38

Awk implementation in Rust with broad CLI compatibility, parallel records, and experimental Cranelift JIT
Documentation
1
2
3
4
5
BEGIN {
    OFS = ":"
    $0 = "a b"
    print $1, $2
}