printf函数用于格式化指定内容。
printf
printf函数不会自动换行。
printf(FORMAT, variable1, variable2...)
示例:
date | awk '{printf "%s年%s月%s日 %s %s\n", $NF, $2, $3, $1, $4}'