fish/functions/sjoin.fish @ 71b4b4adee33

More remote bins
author Steve Losh <steve@stevelosh.com>
date Tue, 04 Feb 2020 09:23:46 -0500
parents d66bfb2537fe
children (none)
function sjoin -d "Join input lines into a single line with spaces"
    tr '\n' ' '
end