fish/functions/lstrip.fish @ 789407c01a1c

Dont bother backing up Dropbox
author Steve Losh <steve@stevelosh.com>
date Wed, 25 Jul 2018 05:07:30 +0000
parents c68485e8d84b
children (none)
function lstrip -d "Strip whitespace from the left of each line"
    sed -Ee 's/^[[:space:]]*//'
end