Advertisement
Guest User

uppercase demo

a guest
Oct 16th, 2012
1,214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.09 KB | None | 0 0
  1. bash-4.2$ set -- 'foo bar'
  2.  
  3. bash-4.2$ echo "$1"
  4. foo bar
  5.  
  6. bash-4.2$ echo "${1^^}"
  7. FOO BAR
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement