标签: ksh sunos
我在SunOS上并尝试编写一个shell脚本,该脚本将mins作为输入并以特定格式显示最终输出日期。
#!/usr/bin/ksh tm=$1 echo $(gdate -d"+$tm mins")ZZ
将上述内容保存为t1.ksh并使用30分钟作为输入。
t1.ksh 30 Output : Wed Mar 28 17:41:04 CDT 2018 How can I get the output as **03-28-2017 5:41:04 PM**
谢谢