fish/functions/sjoin.fish @ e69d43b76d14

gi
author Steve Losh <steve@stevelosh.com>
date Tue, 01 Apr 2014 20:06:03 -0400
parents d66bfb2537fe
children (none)
function sjoin -d "Join input lines into a single line with spaces"
    tr '\n' ' '
end