fish/functions/sjoin.fish @ de2be2d2c256

external-ip
author Steve Losh <steve@stevelosh.com>
date Sun, 02 Feb 2020 12:43:12 -0500
parents d66bfb2537fe
children (none)
function sjoin -d "Join input lines into a single line with spaces"
    tr '\n' ' '
end