在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
发布数据的命令
答案 0 :(得分:1)
我使用命令date "+%a %b %d %Y %H:%M:%S GMT%z (%Z)"
实现了它,输出显示为Wed Oct 21 2015 12:22:44 GMT+0530 (IST)