I want to count number of words from a String using Shell.
Suppose the String is:
input=\"Count from this String\"
Here the delimit
echo "$input" | awk '{print NF}'