fish/functions/lstrip.fish @ b1afc5432344

moooroe
author Steve Losh <steve@stevelosh.com>
date Sun, 02 Mar 2014 13:10:47 -0500
parents d66bfb2537fe
children c68485e8d84b
function lstrip -d "Strip whitespace from the left of each line"
    sed -e 's/^[ \t]*//'
end