fish/functions/sjoin.fish @ 52daeac2d624

New laptop
author Steve Losh <steve@stevelosh.com>
date Wed, 21 Oct 2020 23:33:40 -0400
parents d66bfb2537fe
children (none)
function sjoin -d "Join input lines into a single line with spaces"
    tr '\n' ' '
end