fish/functions/rstrip.fish @ 51ec87e1d131

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