在shell中表示昨天、明天的命令

zhanglei_itput發表於2009-05-11

1.linux os

昨天的命令是:
yesterdayformat=`date --date='yesterday'  "+%Y-%m-%d_%H:%M:%S"`
echo $yesterdayformat
e.g.
[oracle@rac2 ~]$ yesterdayformat=`date --date='yesterday'  "+%Y-%m-%d_%H:%M:%S"`
[oracle@rac2 ~]$ echo $yesterdayformat
                                2009-05-10_16:45:01

明天的命令是:
tomorrowformat=`date --date='tomorrow'  "+%Y-%m-%d_%H:%M:%S"`
echo $tomorrowformat
e.g.
[oracle@rac2 ~]$ tomorrowformat=`date --date='tomorrow'  "+%Y-%m-%d_%H:%M:%S"`
[oracle@rac2 ~]$ echo $tomorrowformat
                                2009-05-12_16:45:40

2.unix os

很複雜

 

參考文獻:

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9252210/viewspace-594763/,如需轉載,請註明出處,否則將追究法律責任。

相關文章