fish/functions/lower.fish @ 2a6258a8b0e6

More
author Steve Losh <steve@stevelosh.com>
date Tue, 07 Feb 2023 11:14:10 -0500
parents 21a0c7224791
children (none)
function lower -d "lowercase input"
    gsed -e 's/./\L\0/g' $argv
end