fish/functions/lstrip.fish @ db7650d6c3a4

Clean up and improve batchcolor
author Steve Losh <steve@stevelosh.com>
date Wed, 23 Dec 2020 09:20:46 -0500
parents c68485e8d84b
children (none)
function lstrip -d "Strip whitespace from the left of each line"
    sed -Ee 's/^[[:space:]]*//'
end