将BASH的日期格式转换为JavaScript的日期格式

时间:2015-10-21 06:30:34

标签: javascript bash shell date curl

在linux shell中执行date命令时,dispplayed的格式为Wed Oct 21 11:48:18 IST 2015

在Javascript中执行date命令时,显示的格式为Wed Oct 21 2015 11:48:18 GMT+0530 (IST)

使用shell脚本如何将linux shell日期格式转换为javascript日期格式并将其用于使用CURL发布数据的命令

1 个答案:

答案 0 :(得分:1)

我使用命令date "+%a %b %d %Y %H:%M:%S GMT%z (%Z)"实现了它,输出显示为Wed Oct 21 2015 12:22:44 GMT+0530 (IST)