fish/functions/rstrip.fish @ d95b0a82e74e

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