nsbin/first_to_upper

3 lines
79 B
Plaintext
Raw Normal View History

2006-07-20 07:54:37 +00:00
#/bin/sh
echo $@ | sed 's/\(^.\)\(.*\)/\1 \2/' | awk '{ print toupper($1)$2 }'