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.6.0 When cut doesn't cut it.
USAGE: tuc [FLAGS] [OPTIONS]
FLAGS: -p, --compress-delimiter Collapse any sequence of delimiters -s, --only-delimited Do not print lines not containing delimiters -V, --version Prints version information -h, --help Prints this help and exit
OPTIONS:
-b, --bytes Replace the delimiter with the provided text
-t, --trim
```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" | tuc -d '𝌆' -f 1,3 ac ```
```sh
❯ echo "😁🤩😝😎" | tuc -c 4,3,2,1 😎😝🤩😁 ```
```sh
❯ echo "😁🤩😝😎" | ./target/debug/tuc -b 5:8 🤩 ```
Tuc is distributed under the GNU GPL license (version 3 or any later version).
See LICENSE file for details.