fish/functions/sjoin.fish @ 23b6ca12aedf

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