fish/functions/upper.fish @ e5daabe9025c

Random vim shit
author Steve Losh <steve@stevelosh.com>
date Tue, 09 Feb 2016 13:44:13 +0000
parents 21a0c7224791
children (none)
function upper -d "uppercase input"
    gsed -e 's/./\U\0/g' $argv
end