fish/functions/rstrip.fish @ db7650d6c3a4

Clean up and improve batchcolor
author Steve Losh <steve@stevelosh.com>
date Wed, 23 Dec 2020 09:20:46 -0500
parents c68485e8d84b
children (none)
function rstrip -d "Strip whitespace from the right of each line"
    sed -e 's/[[:space:]]*$//'
end