fish/functions/rstrip.fish @ 4049cfd97ffb

Merge.
author Steve Losh <steve@stevelosh.com>
date Mon, 23 Jul 2018 15:49:20 +0000
parents c68485e8d84b
children (none)
function rstrip -d "Strip whitespace from the right of each line"
    sed -e 's/[[:space:]]*$//'
end