RosettaCodeData/Task/String-length/AWK/string-length-2.awk

3 lines
65 B
Awk

#!/usr/bin/awk -f
{print"The length of this line is "length($0)}