fish/functions/upper.fish @ 21a0c7224791

text-mangling aliases
author Steve Losh <steve@stevelosh.com>
date Tue, 08 Sep 2015 16:39:27 +0000
parents (none)
children (none)
function upper -d "uppercase input"
    gsed -e 's/./\U\0/g' $argv
end