Search notes:

awk example: output record separator ($ORS)

awk '{print $1,$2,3}' ORS=" / " data
echo
awk 'BEGIN {ORS=" : "} {print $1,$2,3}' data
echo
Github repository about-awk, path: /ORS_output_record_seperator/go.sh
one 1 foo
two 2 bar
three 3 baz
Github repository about-awk, path: /ORS_output_record_seperator/data

See also

awk examples

Index