fish/functions/lrstrip.fish @ 30faa48af4ce default tip

More
author Steve Losh <steve@stevelosh.com>
date Mon, 19 Aug 2024 08:56:24 -0400
parents d66bfb2537fe
children (none)
function lrstrip -d "Strip whitespace from both ends of each line"
    lstrip | rstrip
end