fish/functions/sjoin.fish @ 0e29f5ad3481

Merge
author Steve Losh <steve@stevelosh.com>
date Fri, 07 Jul 2023 16:11:02 -0400
parents d66bfb2537fe
children (none)
function sjoin -d "Join input lines into a single line with spaces"
    tr '\n' ' '
end