fish/functions/sjoin.fish @ dedc81b8510c

Diagram
author Steve Losh <steve@stevelosh.com>
date Tue, 19 Mar 2024 14:06:36 -0400
parents d66bfb2537fe
children (none)
function sjoin -d "Join input lines into a single line with spaces"
    tr '\n' ' '
end