Shell script to find the length of a string | Programming in Linux
awk has a built in function called length with which you can find the length of a string. The following shell script shows how to find the length of the string with awk #!/bin/sh #Shell script to find the length of the string string="Joys of Programming"
linuxprograms.wordpress.com |