下面两个命令是等价的:
awk 'BEGIN {split('"/"`date`/""', date); print date[1], date[2]}'
awk 'BEGIN {split("'"`date`"'", date); print date[1], date[2]}'