fish/functions/sjoin.fish @ 75a6dea2de19

Subrepo
author Steve Losh <steve@stevelosh.com>
date Fri, 06 Nov 2020 11:00:18 -0500
parents d66bfb2537fe
children (none)
function sjoin -d "Join input lines into a single line with spaces"
    tr '\n' ' '
end