j
k
j a
j l
awk -v q="'" ' BEGIN { ORS=" "; printf("%s", q) } { print """ $1 """ } END { printf("%s", q) } ' or awk ' BEGIN { ORS=" "; printf("\x27") } { print """ $1 """ } END { printf("\x27") } '
Thanks JD!
Back to the thread
Back to the list