fish/functions/rstrip.fish @ e5daabe9025c

Random vim shit
author Steve Losh <steve@stevelosh.com>
date Tue, 09 Feb 2016 13:44:13 +0000
parents c68485e8d84b
children (none)
function rstrip -d "Strip whitespace from the right of each line"
    sed -e 's/[[:space:]]*$//'
end