fish/functions/upper.fish @ 73adae8ca49d

Add vim/bundle/_wat to .hgignore.
author Steve Losh <steve@stevelosh.com>
date Fri, 23 Jun 2017 13:41:39 +0000
parents 21a0c7224791
children (none)
function upper -d "uppercase input"
    gsed -e 's/./\U\0/g' $argv
end