fish/functions/upper.fish @ e26a5b448f20

Last hostnameport
author Steve Losh <steve@stevelosh.com>
date Sat, 15 Jul 2023 23:21:57 -0400
parents 21a0c7224791
children (none)
function upper -d "uppercase input"
    gsed -e 's/./\U\0/g' $argv
end