fish/functions/upper.fish @ a81cac75b4d3

freqs and props
author Steve Losh <steve@stevelosh.com>
date Thu, 23 Jan 2020 23:35:07 -0500
parents 21a0c7224791
children (none)
function upper -d "uppercase input"
    gsed -e 's/./\U\0/g' $argv
end