Header Ads Widget

Ticker

6/recent/ticker-posts

Write an awk program using function, which convert each word in a given text into capital

 echo "Enter the String"

a=$(awk 'BEGIN{
  getline str;
  print toupper(str);
  }')
echo $a

Post a Comment

0 Comments