Linux Shell下變數比較

dbasdk發表於2014-11-18
兩個引數對比
Linux Shell下變數比較

[root@CentOS6 shell]# vi test.sh
[root@CentOS6 shell]# cat test.sh
#!/bin/bash
if [ $1 -ge $2 ];
 then echo -e "\033[41;37m \033[0m"
else
 echo "起止時間依次是:`date -d "$2 days ago" +%Y%m%d`--`date -d "$1 days ago" +%Y%m%d`";
fi
[root@CentOS6 shell]# ./test.sh 1 2
起止時間依次是:20141116--20141117
[root@CentOS6 shell]# ./test.sh 2 1
 
[root@CentOS6 shell]# ./test.sh 2 8
起止時間依次是:20141110--20141116
[root@CentOS6 shell]# ./test.sh 1 90
起止時間依次是:20140820--20141117
[root@CentOS6 shell]# ./test.sh 1 100
起止時間依次是:20140810--20141117
[root@CentOS6 shell]# ./test.sh 1 1
 
[root@CentOS6 shell]#

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

相關文章