summaryrefslogtreecommitdiff
path: root/strjoin
blob: 83b2a9cc866a807d9976e30c8c995221807cfc4b (plain)
1
2
3
4
5
6
#!/bin/sh
sep=$1
shift
printf '%s' "$1"
shift
printf "$sep"'%s' "$@"