fish/functions/upper.fish @ de3fbded24a1

More
author Steve Losh <steve@stevelosh.com>
date Tue, 04 Oct 2022 14:20:19 -0400
parents 21a0c7224791
children (none)
function upper -d "uppercase input"
    gsed -e 's/./\U\0/g' $argv
end