fish/functions/sjoin.fish @ 324d9b638b9a

Merge
author Steve Losh <steve@stevelosh.com>
date Mon, 31 Aug 2020 11:53:46 -0400
parents d66bfb2537fe
children (none)
function sjoin -d "Join input lines into a single line with spaces"
    tr '\n' ' '
end