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.8.0 [UNRELEASED] 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 -z, --zero-terminated line delimiter is NUL (\0), not LF (\n) -h, --help Prints this help and exit -m, --complement keep the opposite fields than the one selected -j, --join write the delimiter between fields
OPTIONS:
-b, --bytes Replace the delimiter with the provided text
-t, --trim
Notes: --trim and --compress-delimiter are applied before --fields --lines does not load the whole input in memory if the fields are ordered and non-negative (e.g. -l 1,3:4,4,7) and options -p/-m have not been set ```
```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 "😁🤩😝😎" | tuc -b 5:8 🤩 ```
```sh
echo "a b c" | tuc --complement -d ' ' -f 2 ac ```
Tuc is distributed under the GNU GPL license (version 3 or any later version).
See LICENSE file for details.