fish/functions/upper.fish @ 8286e61c3b01

Updates
author Steve Losh <steve@stevelosh.com>
date Mon, 15 Oct 2018 16:50:22 -0700
parents 21a0c7224791
children (none)
function upper -d "uppercase input"
    gsed -e 's/./\U\0/g' $argv
end