fish/functions/sjoin.fish @ c49f8198d9f3

Merge
author Steve Losh <steve@stevelosh.com>
date Mon, 16 Aug 2021 15:39:10 -0400
parents d66bfb2537fe
children (none)
function sjoin -d "Join input lines into a single line with spaces"
    tr '\n' ' '
end