Shell script to find the length of a string | Programming in Linux

Shell script to find the length of a string | Programming in Linux

瀏覽:1429
日期:2025-04-27
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" ...看更多