fish/functions/sjoin.fish @ c5124aa20cbd

A bunch more
author Steve Losh <steve@stevelosh.com>
date Fri, 11 Mar 2022 12:36:18 -0500
parents d66bfb2537fe
children (none)
function sjoin -d "Join input lines into a single line with spaces"
    tr '\n' ' '
end