由awk用来分隔print语句输出的字段。例如:
echo "a b c d e f" | awk 'BEGIN {OFS="-"} {print $2, $3}'
产生:
b-c e-f
默认值为,由单个空格组成的字符串。