File mtt/bin/capitalise_initial from the latest check-in
#! /bin/sh phrase="$*" initial=$(echo $phrase | sed 's/\(.\).*/\1/') Initial=$(echo $initial | tr [a-z] [A-Z]) echo $phrase | sed s/$initial/$Initial/
#! /bin/sh phrase="$*" initial=$(echo $phrase | sed 's/\(.\).*/\1/') Initial=$(echo $initial | tr [a-z] [A-Z]) echo $phrase | sed s/$initial/$Initial/