We've all been there. You want to cut
some string on a delimiter repeated in a non-deterministic way. Maybe you even want to use negative indexes or replace the delimiters in the cut part with something else...
That's where tuc
can help.
Download one of the prebuilt binaries
or run
cargo install tuc
``` tuc 0.4.0 When cut doesn't cut it.
USAGE: tuc [FLAGS] [OPTIONS]
FLAGS: -p, --compress-delimiter Display the delimiter at most once in a sequence -h, --help Prints help information -s, --only-delimited Do not print lines not containing delimiters -V, --version Prints version information
OPTIONS:
-d, --delimiter
```sh
❯ echo "foo bar baz" | tuc -d ' ' -f 2: bar baz ```
```sh
❯ echo "foo bar baz" | tuc -d ' ' -f 2: -p bar baz ```
```sh
❯ echo "foo bar baz" | tuc -d ' ' -f 2: -p -r ' -> ' bar -> baz ```
```sh
❯ echo "a b c" | tuc -d ' ' -f -1,-2,-3 cba ```
```sh
❯ echo "a
```sh
❯ echo "a𝌆b𝌆c" | cut -d '𝌆' -f1,3 ac ```
Tuc is distributed under the GNU GPL license (version 3 or any later version).
See LICENSE file for details.