nsbin/first_to_upper

3 lines
79 B
Plaintext
Executable File

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