fish/functions/sjoin.fish @ 808324313cb6

Merge
author Steve Losh <steve@stevelosh.com>
date Thu, 24 Dec 2020 15:56:30 -0500
parents d66bfb2537fe
children (none)
function sjoin -d "Join input lines into a single line with spaces"
    tr '\n' ' '
end