fish/functions/upper.fish @ 2a6258a8b0e6

More
author Steve Losh <steve@stevelosh.com>
date Tue, 07 Feb 2023 11:14:10 -0500
parents 21a0c7224791
children (none)
function upper -d "uppercase input"
    gsed -e 's/./\U\0/g' $argv
end