fish/functions/sjoin.fish @ fd4566bbfa9f

Merge.
author Steve Losh <steve@stevelosh.com>
date Tue, 17 Mar 2020 18:07:18 -0400
parents d66bfb2537fe
children (none)
function sjoin -d "Join input lines into a single line with spaces"
    tr '\n' ' '
end