fish/functions/lstrip.fish @ c8b7d567fbc1

more
author Steve Losh <steve@stevelosh.com>
date Tue, 02 Dec 2014 16:11:18 -0800
parents d66bfb2537fe
children c68485e8d84b
function lstrip -d "Strip whitespace from the left of each line"
    sed -e 's/^[ \t]*//'
end