fish/functions/upper.fish @ b0694cb7f733

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