fish/functions/lstrip.fish @ 2b37786c6a97

Update
author Steve Losh <steve@stevelosh.com>
date Fri, 08 Sep 2017 19:37:36 -0400
parents c68485e8d84b
children (none)
function lstrip -d "Strip whitespace from the left of each line"
    sed -Ee 's/^[[:space:]]*//'
end