Command line string processing toolset

The strtools is a set of command line tools for string processing running on Unix/Linux. There may be alternative tools but this toolset is useful at least for me.

Search from the Internet:
Custom Search

Strtools

The initial version of this software is available at strtools-0.3.0.tar.gz. This toolset contains following commands:

How to use it

  1. Extract the source code and compile it
    $ tar -zxvf strtools-0.3.0.tar.gz
    $ cd strtools-0.3.0
    $ ./configure && make
    We note that you can install with the following command:
    $ make install
  2. Run the program like;
    $ echo "This is a test string." | ./strtoupper/strtoupper
    and the expected output would be
    THIS IS A TEST STRING.