``
slit 0.0.1
slit is like
cut`, but (slightly) smarter.
It also is easier to use, because it has fewer options that most people want most of the time. If you're a cut
whiz,
or your last name is Aho, Weinberger or Kernighan, this probably isn't for you.
cut
For the most part, slit is like cut but more convenient defaults and additional functionality. However, there are a few potential gotchas if migrating to it:
Pass <file>
to read from a file, otherwise slit will read from STDIN.
USAGE:
slit [FLAGS] [OPTIONS] --fields
FLAGS:
-h, --help
Prints help information
--print-undelimited
Also print lines not containing the delimited character
-V, --version
Prints version information
-v, --verbose
Directory to use as the root of a new tmux session. Pass the flag multiple times to increase verbosity, up
to a maximum of 3
OPTIONS:
-d, --delimiter
-F, --exclude <exclude>
Exclude only these fields; also print any line that contains no delimiter character, unless the -s option is
specified. Takes precedence over included fields selected with -f, --fields
-f, --fields <include>
Select only these fields; also print any line that contains no delimiter character, unless the -s option is
specified
-D, --output-delimiter <output-delimiter>
Delimiter to use when printing the line, instead of the input delimiter. Can be useful to transform a
separated line into a line with a new separator. them up into fields
-n, --skip <skip>
Number of lines to skip, from the beginning of the input. TODO: Make this accept a negative number to skip
at the end [default: 0]
ARGS:
Sum the values from a file
```