fish/functions/sjoin.fish @ 7d16f9d89280

Fix my garbage fingers
author Steve Losh <steve@stevelosh.com>
date Tue, 29 Mar 2016 11:29:47 +0000
parents d66bfb2537fe
children (none)
function sjoin -d "Join input lines into a single line with spaces"
    tr '\n' ' '
end