shell将时间戳转换为时间格式时间:2021-11-06 02:38:09date -d @时间戳 "+%Y-%m-%d %H:%M:%S" 也可以内置函数 awk '{print strftime("%Y-%m-%d %H:%M:%S",$1)}' 如果是毫秒级的时间戳要先除以1000;