frawk icon indicating copy to clipboard operation
frawk copied to clipboard

an efficient awk-like language

Results 28 frawk issues
Sort by recently updated
recently updated
newest added

``` $ echo 1 2 3 | frawk '{ $1 = 0; print $0 }' 0 2 3 ``` vs ``` $ echo 1,2,3 | frawk -i csv '{ $1...

Build fails with rust-nightly-1.79.0.20240317: ``` error[E0635]: unknown feature `stdsimd` --> /wrkdirs/usr/ports/lang/frawk/work/frawk-0.4.7/cargo-crates/ahash-0.7.6/src/lib.rs:33:42 | 33 | #![cfg_attr(feature = "stdsimd", feature(stdsimd))] | ^^^^^^^ ``` Version: 0.4.7 FreeBSD @ezrosent ahash version needs to be...

This might sound crazy but still I wanted to propose a feature request about parquet files. You might ask, why? Parquet files are becoming more widespread and might even be...

ENVIRON, array of environment variables, and support by awk and gawk.

``` BEGIN { for (i = 0 ; i < 10 ; i += 1) { if (1) continue; } print("ok") } ``` ``` $ awk -f bug.awk ok $...

Hi! Recently I did many Profile-Guided Optimization (PGO) benchmarks on multiple projects (including interpreters and compilers like Rustc, Clang, GCC, CPython, and many others) - the results are available [here](https://github.com/zamazan4ik/awesome-pgo)....

frawk is 3 times slower than mawk when reading/writing to piped commands opened by the awk process. Reading 2 input files from a pipe and writing to stdout: ```awk ❯...

frawk is built using `--no-default-features` (to prevent the known `jemalloc` issue), in debug mode with rust 1.70 (that landed the alignment check in debug), ``` C:\[...]\Documents\frawk>target\debug\frawk -B cranelift "{print $1}"...

If possible, I'd like to pre-compile frawk scripts to binary executables. This would make it easier for me to distribute the scripts I've written to places where it is difficult...

yay -Sy frawk ................. Compiling frawk v0.4.6 (/tmp/makepkg/frawk/src/frawk-0.4.6) Compiling tikv-jemallocator v0.4.3 error[E0554]: `#![feature]` may not be used on the stable release channel --> src/main.rs:2:43 | 2 | #![cfg_attr(feature = "unstable",...