fish/functions/sjoin.fish @ ebaf215e5d89

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