後台即時分流檔案的shell指令碼

來源:互聯網
上載者:User

將bill 檔案夾下的檔案按一定規則(檔案名稱奇偶)拷貝至bill1,bill2 檔案夾下。
更新bill1,bill2 處理進度標籤(更新file.max)
file3 為bill 目錄下當前最新檔案的標籤,正常情況下每分鐘會更新(格式為:20121016122100)

複製代碼 代碼如下:#!/bin/bash
#for wanggy 2012/10/16
bill1=/infosms/bill1
bill2=/infosms/bill2
file_max=`cat file3`
cd /infosms/bill
while :
echo "開始"
do
if [ $file_max != `cat file3` ];then
echo "不相等,處理"
#判斷file3 11-12位(奇偶)
num1=`cut -c 11-12 file3`
#如果不加10# 模數的時候遇到08會出錯。(8進位判斷?)
num=$((10#$num1%2))
#num=$(($num1%2))
#擷取bill下當前檔案(最新)
file_name=B`cat file3`
echo "最新檔案:$file_name"
case $num in
1)
echo "odd"
cp -a $file_name ../bill1
echo `cat file3` >../bill1/file.max

0)
echo "even"
cp -a $file_name ../bill2
echo `cat file3` >../bill2/file.max

esac
echo "對file_max給最新的值"
file_max=`cat file3`
else
echo "相等,不處理,退出!"
# file_date=`cat $filename`
# exit 1
fi
echo "等待10秒,下一次判斷..."
sleep 10
done

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.