fish/functions/upper.fish @ b69dc77f379c

A bunch more crap
author Steve Losh <steve@stevelosh.com>
date Sat, 09 Apr 2016 22:11:59 +0000
parents 21a0c7224791
children (none)
function upper -d "uppercase input"
    gsed -e 's/./\U\0/g' $argv
end