周的數(shù)字為0-7時(shí),都代表”星期天”的意思,
輔助字符
系統(tǒng)任務(wù)計(jì)劃
[root@wx-a ~]# cat /etc/crontab
SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
HOME=/
# For details see man 4 crontabs
# Example of job definition:
# .---------------- minute (0 - 59)
# | .------------- hour (0 - 23)
# | | .---------- day of month (1 - 31)
# | | | .------- month (1 - 12) OR jan,feb,mar,apr ...
# | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# | | | | |
# * * * * * user-name command to be executed
crontab -e是針對用戶的cron來設(shè)計(jì)的。
基本上cron這個(gè)服務(wù)的最低檢測限制是”分鐘”,所以cron每分鐘去讀取一次/etc/crontab 與/var/spool/cron 里面的數(shù)據(jù)內(nèi)容。
標(biāo)準(zhǔn)輸出(stout): 代碼為1 使用>或>>
標(biāo)準(zhǔn)錯(cuò)誤輸出(stderr): 代碼為2 使用2> 或2>>
黑洞/dev/null
錯(cuò)誤輸出 2>1
cron 讓計(jì)劃任務(wù)不在屏幕上輸出采用 > /dev/null 2>1
[root@wx-a ~]# crontab -l
*/1 * * * * echo "hello" >> /tmp/test.txt
[root@wx-a ~]# cat /tmp/test.txt
hello
[root@wx-a ~]# cat /tmp/test.txt
hello
hello
讓輸出到黑洞里面去
[root@wx-a ~]# crontab -l
*/1 * * * * echo "hello"
[root@wx-a ~]# crontab -l
*/1 * * * * echo "hello" >/dev/null 2>1 輸出到黑洞了
其他的幫助可以查看 man cron 或者man crontab
ps:ocsng linux客戶端安裝
aptitude -y install gcc automake autoconf libtool make
aptitude -y install dmidecode libxml-simple-perl libcompress-zlib-perl libnet-ip-perl libwww-perl libdigest-md5-perl libnet-ssleay-perl
aptitude -y install libcrypt-ssleay-perl libnet-snmp-perl libproc-pid-file-perl libproc-daemon-perl net-tools libsys-syslog-perl pciutils smartmontools read-edid nmap
tar –xvzf Ocsinventory-Agent-2.0.x.tar.gz
cd Ocsinventory-Agent-2.0.x
env PERL_AUTOINSTALL=1 perl Makefile.PL
make
make install
標(biāo)簽:丹東 自貢 武漢 六盤水 鎮(zhèn)江 百色 滁州 優(yōu)質(zhì)小號
巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《淺談:linux cron 計(jì)劃任務(wù)常用符號小結(jié)》,本文關(guān)鍵詞 淺談,linux,cron,計(jì)劃,任務(wù),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。