sprintf函数用于格式化指定内容到一个字符串变量。
sprintf
sprintf(FORMAT, variable1, variable2...)
示例:
date | awk '{print sprintf("%s年%s月%s日 %s %s", $NF, $2, $3, $1, $4)}'