fish/functions/rstrip.fish @ c5f79f4ca83c

Merge
author Steve Losh <steve@stevelosh.com>
date Sat, 12 Dec 2020 17:44:09 -0500
parents c68485e8d84b
children (none)
function rstrip -d "Strip whitespace from the right of each line"
    sed -e 's/[[:space:]]*$//'
end