nsbin/first_to_upper
Nico Schottelius d3c6e29902 Initial commit
2006-07-20 09:54:37 +02:00

2 lines
79 B
Text
Executable file

#/bin/sh
echo $@ | sed 's/\(^.\)\(.*\)/\1 \2/' | awk '{ print toupper($1)$2 }'