fish/functions/sjoin.fish @ 24019e3c7df7

More
author Steve Losh <steve@stevelosh.com>
date Sat, 28 Dec 2019 00:40:58 +0000
parents d66bfb2537fe
children (none)
function sjoin -d "Join input lines into a single line with spaces"
    tr '\n' ' '
end