fish/functions/lstrip.fish @ 28205343c464

Merge.
author Steve Losh <steve@stevelosh.com>
date Fri, 19 Jan 2018 20:06:06 +0000
parents c68485e8d84b
children (none)
function lstrip -d "Strip whitespace from the left of each line"
    sed -Ee 's/^[[:space:]]*//'
end