fish/functions/upper.fish @ 6d4169050c8c

lw
author Steve Losh <steve@stevelosh.com>
date Sat, 12 Dec 2020 17:42:39 -0500
parents 21a0c7224791
children (none)
function upper -d "uppercase input"
    gsed -e 's/./\U\0/g' $argv
end