ocaml-csv icon indicating copy to clipboard operation
ocaml-csv copied to clipboard

Filter by value?

Open suntong opened this issue 3 years ago • 0 comments

$ cat my.csv
digit,name
1,one
2,two
3,3
4,4
5,5
6,6
7,7
8,8

$ csvtool filter 1 '<=3' my.csv
digit,name
1,one
2,two
3,3

Would that be possible?

suntong avatar Aug 07 '22 15:08 suntong