fish/functions/sjoin.fish @ 6ba110080a93

Fix
author Steve Losh <steve@stevelosh.com>
date Thu, 31 Aug 2023 18:48:07 -0400
parents d66bfb2537fe
children (none)
function sjoin -d "Join input lines into a single line with spaces"
    tr '\n' ' '
end