mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
37f2a178de
This is choose, a human-friendly and fast alternative to cut and (sometimes) awk. Features - terse field selection syntax similar to Python's list slices - negative indexing from end of line - optional start/end index - zero-indexed - reverse ranges - aslightly faster than cut for sufficiently long inputs, much faster than awk - regular expression field separators using Rust's regex syntax WWW: https://github.com/theryangeary/choose
13 lines
396 B
Plaintext
13 lines
396 B
Plaintext
This is choose, a human-friendly and fast alternative to cut and
|
|
(sometimes) awk.
|
|
|
|
Features
|
|
- terse field selection syntax similar to Python's list slices
|
|
- negative indexing from end of line
|
|
- optional start/end index
|
|
- zero-indexed
|
|
- reverse ranges
|
|
- aslightly faster than cut for sufficiently long inputs, much faster
|
|
than awk
|
|
- regular expression field separators using Rust's regex syntax
|