fish/functions/lower.fish @ bec1b5c8a9b1

Shell shit in the vimrc
author Steve Losh <steve@stevelosh.com>
date Fri, 11 Sep 2015 14:11:46 +0000
parents 21a0c7224791
children (none)
function lower -d "lowercase input"
    gsed -e 's/./\L\0/g' $argv
end