Sunday, 17 June 2012

Write a shell script to convert the entered upper case string to lower case string


clear
echo enter the string in uppercase
read s
echo $s|tr '[:upper:]' '[:lower:]'

No comments:

Post a Comment