fish/functions/rstrip.fish @ ab96bcc7a4c0

Remove lots of things I never use
author Steve Losh <steve@stevelosh.com>
date Fri, 20 Jan 2017 12:12:18 +0000
parents c68485e8d84b
children (none)
function rstrip -d "Strip whitespace from the right of each line"
    sed -e 's/[[:space:]]*$//'
end