fish/functions/sjoin.fish @ b1afc5432344

moooroe
author Steve Losh <steve@stevelosh.com>
date Sun, 02 Mar 2014 13:10:47 -0500
parents d66bfb2537fe
children (none)
function sjoin -d "Join input lines into a single line with spaces"
    tr '\n' ' '
end