fish/functions/rstrip.fish @ be6bc1ce4ad3

Fix hours
author Steve Losh <steve@stevelosh.com>
date Tue, 03 Jul 2018 04:58:57 +0000
parents c68485e8d84b
children (none)
function rstrip -d "Strip whitespace from the right of each line"
    sed -e 's/[[:space:]]*$//'
end