Gitiles
Code Review
Sign In
asterix-gerrit.ics.uci.edu
/
asterixdb
/
186c3804c7c7418f0db980c8c4c2b21c92d88603
/
.
/
asterix-tools
/
scripts
/
bash
/
upcase.sh
blob: 1562771c6fe086c0aecea5859131771aa8b31c2e [
file
] [
log
] [
blame
]
#!/bin/bash
while
read line
;
do
for
i
in
$line
;
do
U
=
`echo -n "${i:0:1}" | tr "[:lower:]" "[:upper:]"`
;
echo
-
n
"${U}${i:1} "
;
done
echo
""
done