fish/functions/lstrip.fish @ ab72ef75498b

Add imgcat
author Steve Losh <steve@stevelosh.com>
date Sat, 20 Feb 2016 12:42:08 +0000
parents c68485e8d84b
children (none)
function lstrip -d "Strip whitespace from the left of each line"
    sed -Ee 's/^[[:space:]]*//'
end