fish/functions/upper.fish @ 67c493e39f7a

Update
author Steve Losh <steve@stevelosh.com>
date Mon, 08 May 2023 13:51:00 -0400
parents 21a0c7224791
children (none)
function upper -d "uppercase input"
    gsed -e 's/./\U\0/g' $argv
end