fish/functions/rstrip.fish @ 51b9c5b3b301

More
author Steve Losh <steve@stevelosh.com>
date Mon, 08 Oct 2018 16:34:42 -0700
parents c68485e8d84b
children (none)
function rstrip -d "Strip whitespace from the right of each line"
    sed -e 's/[[:space:]]*$//'
end