frawk
frawk copied to clipboard
an efficient awk-like language
Is it possilbe to build frawk with musl? ```cargo +nightly build --release --target x86_64-unknown-linux-musl``` I always run in to problems with jemalloc. I just want to have a static version...
When using archimetric operators in print, strings are ignored (or converted to 0). ```awk ❯ frawk 'BEGIN { print "test" 6}' test6 # Should print "test11" ❯ frawk 'BEGIN {...
Can you add builded files for linux/etc?
Mininal awk code with omitted {} or ; does not work: ``` ❯ frawk 'BEGIN { if (1 == 1) print "yes" }' Unrecognized token `}` found at line 1,...
Add goawk to the benchmark: https://github.com/benhoyt/goawk - I/O-bound AWK scripts (which is most of them) are significantly faster than awk, and on a par with gawk and mawk. - CPU-bound...
Run some of the mawk test in the mawk tarball in the test directory to detect some bugs or missing features: https://invisible-island.net/mawk/ `-F '\0'` is not supported (due to regex...
It's really good to see that great AWK language is not death, and modern implementation is developed. My congratulation! I used to use AWK a lot, especially to calculate some...
The `-devel` package is needed here since `llvm-sys` requires `llvm-config`.