fish/functions/rstrip.fish @ efcd701f7122

yeam more
author Steve Losh <steve@stevelosh.com>
date Wed, 05 Mar 2014 14:09:27 -0500
parents d66bfb2537fe
children c68485e8d84b
function rstrip -d "Strip whitespace from the right of each line"
    sed -e 's/[ \t]*$//'
end