``` tuc 0.1.0 When cut doesn't cut it.
USAGE: tuc [FLAGS] [OPTIONS]
FLAGS: -p 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
```
$ echo "foo bar baz" | tuc -d ' ' -f 2: bar baz ```
```
$ echo "foo bar baz" | tuc -d ' ' -f 2: -p bar baz ```
```
$ echo "foo bar baz" | tuc -d ' ' -f 2: -p -r '/' bar/baz ```