fish/functions/lstrip.fish @ e26a5b448f20

Last hostnameport
author Steve Losh <steve@stevelosh.com>
date Sat, 15 Jul 2023 23:21:57 -0400
parents c68485e8d84b
children (none)
function lstrip -d "Strip whitespace from the left of each line"
    sed -Ee 's/^[[:space:]]*//'
end