fish/functions/rstrip.fish @ 73adae8ca49d

Add vim/bundle/_wat to .hgignore.
author Steve Losh <steve@stevelosh.com>
date Fri, 23 Jun 2017 13:41:39 +0000
parents c68485e8d84b
children (none)
function rstrip -d "Strip whitespace from the right of each line"
    sed -e 's/[[:space:]]*$//'
end