fish/functions/sjoin.fish @ d436478438d9

Merge.
author Steve Losh <steve@stevelosh.com>
date Sat, 02 Feb 2019 14:16:31 -0500
parents d66bfb2537fe
children (none)
function sjoin -d "Join input lines into a single line with spaces"
    tr '\n' ' '
end