Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 480 Bytes

File metadata and controls

14 lines (10 loc) · 480 Bytes

cut-cpp

Linux command-line tool "cut" implementation in C++. Supports only the -f, -d, -b and --complement arguments. More about cut tool: linux.die.net/man/1/cut

The source is split into a library, called libcut, that provides string processing functionality and an executable, called cut, that parses out the parameters and runs the input through the line processors.

Unit testing is done on the library part only.

Build with Gradle.