fish/functions/sjoin.fish @ 9ab8e17039d6

More
author Steve Losh <steve@stevelosh.com>
date Wed, 04 Dec 2019 14:42:30 -0500
parents d66bfb2537fe
children (none)
function sjoin -d "Join input lines into a single line with spaces"
    tr '\n' ' '
end