fish/functions/sjoin.fish @ 14b2a5152bea

Merge
author Steve Losh <steve@stevelosh.com>
date Thu, 18 Jul 2024 10:09:41 -0400
parents d66bfb2537fe
children (none)
function sjoin -d "Join input lines into a single line with spaces"
    tr '\n' ' '
end