Mercurial > mm7
comparison lib/swig/swigwin-2.0.11/Tools/capitalize @ 1899:b3009adc0e2f
Adding swig, gitignore, hgignore
author | Nomad |
---|---|
date | Mon, 21 Oct 2013 10:42:27 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1867:eb580660bbbb | 1899:b3009adc0e2f |
---|---|
1 #!/bin/sh | |
2 # usage: capitalize word | |
3 # write word to stdout w/ first character upcased | |
4 first_char=`echo $1 | sed 's/^\(.\).*/\1/' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ` | |
5 echo ${first_char}`echo $1 | sed 's/^.//'` |