fish/functions/sjoin.fish @ b31a16ffe5a1

Merge.
author Steve Losh <steve@stevelosh.com>
date Mon, 09 Sep 2019 10:08:45 -0400
parents d66bfb2537fe
children (none)
function sjoin -d "Join input lines into a single line with spaces"
    tr '\n' ' '
end