fish/functions/lrstrip.fish @ c706f0dc399f

More
author Steve Losh <steve@stevelosh.com>
date Sat, 15 Jul 2023 19:34:14 -0400
parents d66bfb2537fe
children (none)
function lrstrip -d "Strip whitespace from both ends of each line"
    lstrip | rstrip
end