您好,登錄后才能下訂單哦!
本篇內(nèi)容介紹了“l(fā)inux cron計(jì)劃任務(wù)常用的符號(hào)有哪些”的有關(guān)知識(shí),在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
[root@wx-a ~]# crontab --help
crontab: invalid option -- '-'
crontab: usage error: unrecognized option
usage: crontab [-u user] file
crontab [-u user] [ -e | -l | -r ]
(default operation is replace, per 1003.2)
-e (edit user's crontab) 編輯crontab 工作內(nèi)容
-l (list user's crontab) 查看crontab工作內(nèi)容
-r (delete user's crontab) 刪除所有的crontab任務(wù)
-i (prompt before deleting user's crontab)
-s (selinux context)
默認(rèn)情況下,任何用戶只要不被列入/etc/cron.deny 當(dāng)中,都可以執(zhí)行”crontab –e” 去編輯自己的例行性命令了,
代表的意義 | 分鐘 | 小時(shí) | 日期 | 月份 | 周 |
數(shù)字范圍 | 0-59 | 0-23 | 1-31 | 1-12 | 0-7 |
周的數(shù)字為0-7時(shí),都代表”星期天”的意思,
輔助字符
特殊字符 | 代表意義 |
*(星號(hào)) | 代表任何時(shí)刻都接受的意思, |
,(逗號(hào)) | 代表分割時(shí)段的意思,如果要執(zhí)行2:00與4:00時(shí), 0 2,4 * * * command 時(shí)間參數(shù)有五列,第二列就是2,4 代表2:00 與4:00 |
-(減號(hào)) | 代表一段時(shí)間的范圍,例如7點(diǎn)到10點(diǎn)之間的每小時(shí)10分鐘都進(jìn)行一次 工作: 10 7-10 * * * command 第二列變成7-10 代表7 8 9 10 |
/n(斜線) | 那個(gè)n代表數(shù)字,即是每隔n單位間隔的意思,例如每5分鐘進(jìn)行一次, 則: */5 * * * * command 也可以寫成0-59/5 意思相同 |
系統(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
“l(fā)inux cron計(jì)劃任務(wù)常用的符號(hào)有哪些”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。