fish/functions/sjoin.fish @ bb1f0bc31860

Merge
author Steve Losh <steve@stevelosh.com>
date Thu, 27 Aug 2020 22:46:44 -0400
parents d66bfb2537fe
children (none)
function sjoin -d "Join input lines into a single line with spaces"
    tr '\n' ' '
end