fish/functions/sjoin.fish @ a92fa44e6833

Merge.
author Steve Losh <steve@stevelosh.com>
date Wed, 08 May 2019 18:16:07 -0400
parents d66bfb2537fe
children (none)
function sjoin -d "Join input lines into a single line with spaces"
    tr '\n' ' '
end