fish/functions/lstrip.fish @ 1ff33bef5984

a bunch more crap
author Steve Losh <steve@stevelosh.com>
date Sun, 29 May 2016 10:19:33 +0000
parents c68485e8d84b
children (none)
function lstrip -d "Strip whitespace from the left of each line"
    sed -Ee 's/^[[:space:]]*//'
end