fish/functions/sjoin.fish @ e7f1e7f3a797

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