Advertisement
Guest User

Uppercase to lowercase

a guest
Jun 3rd, 2012
350
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.21 KB | None | 0 0
  1. echo “CONVERT UPPER CASE TO LOWER CASE”
  2. echo “OUTPUT:”
  3. echo “Enter a string                 :”
  4. Read str
  5. temp =  ` $str | tr  [A-Z]  [a-z]  `
  6. echo “The lower case string is:”
  7. echo$temp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement