fish/functions/lrstrip.fish @ 9ab8e17039d6

More
author Steve Losh <steve@stevelosh.com>
date Wed, 04 Dec 2019 14:42:30 -0500
parents d66bfb2537fe
children (none)
function lrstrip -d "Strip whitespace from both ends of each line"
    lstrip | rstrip
end