SHELL指令碼每月最後一天判斷
#!/bin/bash
####函式定義
function monBigorSmall()
{
big_month=(1 3 5 7 8 10 12)
small_month=(4 6 9 11)
year=$(echo $1|cut -c 1-4)
month=$(echo $1|cut -c 5-6)
day=$(echo $1|cut -c 7-8)
for bvar in ${big_month[@]}
do
if [ $bvar -eq $month ]
then
echo 31
fi
done
for svar in ${small_month[@]}
do
if [ $svar -eq $month ]
then
echo 30
fi
done
iyear=$((10#${year}))
imonth=$((10#${month}))
if [ $imonth -eq 2 ]
then
if [ $(($iyear % 4)) -eq 0 -a $(($iyear % 100)) -ne 0 ] || [ $(($iyear % 400)) -eq 0 ]
then
echo 29
else
echo 28
fi
fi
}
#########
echo "#############################################################################################"
for ((ii=1;ii<=$last_day;ii++))
do
colname=$(printf "aircraft15_${yyyymm}%02d" $ii)
echo $colname
mongodump -h 10.13.40.71 --port 10001 -uchengqian -pXXXXXX-d flight -c $colname -o /home/lilongqian/temp
mongo localhost:10001/admin -uroot -pXXXXXX' --eval "sh.shardCollection(\"flight.$colname\",{\"_id\":\"hashed\"})"
mongorestore -h 127.0.0.1 --port 10001 -uchengqian -pXXXXXX-d flight -c $colname /home/lilongqian/temp/flight/$colname.bson
rm -rfv /home/lilongqian/temp/flight/$colname*
done
done
【完】
####函式定義
function monBigorSmall()
{
big_month=(1 3 5 7 8 10 12)
small_month=(4 6 9 11)
year=$(echo $1|cut -c 1-4)
month=$(echo $1|cut -c 5-6)
day=$(echo $1|cut -c 7-8)
for bvar in ${big_month[@]}
do
if [ $bvar -eq $month ]
then
echo 31
fi
done
for svar in ${small_month[@]}
do
if [ $svar -eq $month ]
then
echo 30
fi
done
iyear=$((10#${year}))
imonth=$((10#${month}))
if [ $imonth -eq 2 ]
then
if [ $(($iyear % 4)) -eq 0 -a $(($iyear % 100)) -ne 0 ] || [ $(($iyear % 400)) -eq 0 ]
then
echo 29
else
echo 28
fi
fi
}
#########
echo "#############################################################################################"
for ((ii=1;ii<=$last_day;ii++))
do
colname=$(printf "aircraft15_${yyyymm}%02d" $ii)
echo $colname
mongodump -h 10.13.40.71 --port 10001 -uchengqian -pXXXXXX-d flight -c $colname -o /home/lilongqian/temp
mongo localhost:10001/admin -uroot -pXXXXXX' --eval "sh.shardCollection(\"flight.$colname\",{\"_id\":\"hashed\"})"
mongorestore -h 127.0.0.1 --port 10001 -uchengqian -pXXXXXX-d flight -c $colname /home/lilongqian/temp/flight/$colname.bson
rm -rfv /home/lilongqian/temp/flight/$colname*
done
done
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9606353/viewspace-2152737/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- crontab每月最後一天執行
- 【shell 指令碼】備份最後一天所有修改的檔案指令碼
- 函式: 獲得每月的最後一天函式
- shell指令碼中的運算子和條件判斷指令碼
- 日期判斷行修改指令碼指令碼
- Linux shell指令碼判斷伺服器網路是否可以上網Linux指令碼伺服器
- sh指令碼判斷路徑是否存在指令碼
- python學習-判斷閏年指令碼Python指令碼
- Windows下bat指令碼判斷埠是否可用WindowsBAT指令碼
- 在Linux中,如何使用shell指令碼判斷某個服務是否正在執行?Linux指令碼
- Shell 條件判斷總結
- Python 判斷for迴圈最後一次的方法Python
- linux shell 指令 諸如-d, -f, -e之類的判斷表示式Linux
- shell指令碼指令碼
- 最安全的型別判斷型別
- Shell指令碼-壓縮指定目錄下前一天檔案指令碼
- Oracle 判斷 並 手動收集 統計資訊 指令碼Oracle指令碼
- Oracle DG standby刪除歸檔的判斷指令碼Oracle指令碼
- [Shell] Shell 生成 HTML指令碼HTML指令碼
- shell程式設計(五)條件判斷程式設計
- shell指令碼(二)指令碼
- shell指令碼心得指令碼
- shell指令碼案例指令碼
- 常用shell指令碼指令碼
- 巧用shell指令碼生成快捷指令碼指令碼
- CPU對指令長度的判斷
- shell指令碼(6)-shell陣列指令碼陣列
- 退出、測試、判斷及操作符 shell
- shell 判斷檔案或路徑是否存在
- Oracle 取本週第一天,最後一天Oracle
- ABAP 求上月第一天 最後一天 月份相加減 具體程式碼
- 如何加密shell指令碼加密指令碼
- 初識shell指令碼指令碼
- 執行shell指令碼指令碼
- Shell 指令碼語句指令碼
- shell 指令碼加密 | shc指令碼加密
- Linux Shell指令碼Linux指令碼
- shell指令碼例項指令碼