temp

if [ command ];then
符合該條件執行的語句
elif [ command ];then
符合該條件執行的語句
else
符合該條件執行的語句
fisql

19. 定時任務--crontab

19.1 注意點

1).  建議使用用戶拉起本身的定時任務,不要經過root定義用戶的定時任務,會出現定時沒法執行的問題
2).
service cron restart    //刷新定時任務列表    

//示例--1
echo '* * * * *   /home/huawei/mdn2000/cmi/bin/daemon.pl > /dev/null  2>&1' >>$daemon_file
crontab $daemon_file;

//示例--2,不建議使用,會出現定時沒法執行的問題
echo "01 * * * *   root setfacl -Rm u:uniagent:rx /var/log > /dev/null  2>&1" >> /etc/crontab   
service cron restart

crontab –e : 修改 crontab 文件,若是文件不存在會自動建立。 
crontab –l : 顯示 crontab 文件。 
crontab -r : 刪除 crontab 文件。

格式:
    minute hour day-of-month month-of-year day-of-week commands    
    合法值爲:00-59 00-23 01-31 01-12 0-6 (0 is sunday) 

    除了數字還有幾個特殊的符號:"*"、"/"和"-"、","
        *表明全部的取值範圍內的數字
        "/"表明每的意思,"/5"表示每5個單位
        "-"表明從某個數字到某個數字
        ","分開幾個離散的數字

12-1 scp下載上傳文件

scp root@192.192.80.58:/home/huawei/mdn2000/cmi/WebRoot/WEB-INF/lib/portal.sqlmaps.jar ./   //從遠程下載文件
scp ./portal.sqlmaps.jar root@192.192.80.58:/home/huawei/mdn2000/cmi/WebRoot/WEB-INF/lib/portal.sqlmaps.jar           //上傳到遠程服務器
相關文章
相關標籤/搜索