Skip to content

Instantly share code, notes, and snippets.

@unlight
Created June 18, 2020 07:12
Show Gist options
  • Save unlight/63f5a0c1da7660a81f44459dee6766f7 to your computer and use it in GitHub Desktop.
Save unlight/63f5a0c1da7660a81f44459dee6766f7 to your computer and use it in GitHub Desktop.
bash join
#!/usr/bin/env bash
function implode { local delimiter=$1; shift; printf "%s\n" "$@" | paste -sd"$delimiter" }
join_by '|' \
"a v" \
c \
"a"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment