fish/functions/upper.fish @ 4ad9d3c4ebbe

A bunch of shit
author Steve Losh <steve@stevelosh.com>
date Wed, 09 Dec 2015 12:13:08 +0000
parents 21a0c7224791
children (none)
function upper -d "uppercase input"
    gsed -e 's/./\U\0/g' $argv
end