fish/functions/lrstrip.fish @ 7d16f9d89280

Fix my garbage fingers
author Steve Losh <steve@stevelosh.com>
date Tue, 29 Mar 2016 11:29:47 +0000
parents d66bfb2537fe
children (none)
function lrstrip -d "Strip whitespace from both ends of each line"
    lstrip | rstrip
end