fish/functions/upper.fish @ 0f6c567726d4

Sigh
author Steve Losh <steve@stevelosh.com>
date Tue, 24 Aug 2021 16:08:56 -0400
parents 21a0c7224791
children (none)
function upper -d "uppercase input"
    gsed -e 's/./\U\0/g' $argv
end