Strtools
The initial version of this software is available at strtools-0.3.0.tar.gz. This toolset contains following commands:
- strtolower: Convert characters from stdin stream to lowercase. (since v0.1.0)
- strtoupper: Convert characters from stdin stream to uppercase. (since v0.1.0)
- ucwords: Convert the first character of each word in a text from stdin stream to uppercase. (since v0.2.0)
- strtoprint: Print printable characters in a text from stdin stream. (since v0.3.0)
How to use it
- 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
- Run the program like;
$ echo "This is a test string." | ./strtoupper/strtoupper
and the expected output would beTHIS IS A TEST STRING.