fish/functions/upper.fish @ 8148377ec342

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