@JunQiu
2018-11-14T22:03:02.000000Z
字数 3013
阅读 1284
linux
summary_2018/11
Type Symbol
standard input 0<
standard output 1>
standard error 2>
// 告诉 cat input 不是从键盘,而是从文件中来
20:58:35 › cat < text
test
test
// 控制台进程,输出到控制台
21:03:15 › cat text
test
test
// 将text的内容输出到text_1
21:03:20 › cat text > text_1
21:03:39 › cat text_1
test
test
// 将数据输出到txt
20:44:32 › ls -al >> txt (>>追加,>覆盖)
20:45:06 › cat txt
Tips:remember standard error by default is going to the console; the same place as stdout(默认stderr、stdout均输出到控制台)
// 将find中的错误比如没有权限放入/dev/null
find / -name "11111111" -print 2> /dev/null
# /dev/null is similar to the "Recycle Bin" under Windows except it's a waste paper basket with a point of no return
// 联合使用,将错误信息发送到/dev/null,输出信息到MyValidOutput
find / -name "*" -print 2> /dev/null > MyValidOutput
┌───────────── minute (0 - 59)
│ ┌───────────── hour (0 - 23)
│ │ ┌───────────── day of the month (1 - 31)
│ │ │ ┌───────────── month (1 - 12)
│ │ │ │ ┌───────────── day of the week (0 - 6) (Sunday to Saturday;
│ │ │ │ │ 7 is also Sunday on some systems)
│ │ │ │ │
│ │ │ │ │
* * * * * command to execute
特殊符号:
星号(*):代表所有可能的值,例如month字段如果是星号,则表示在满足其它字段的制约条件后每月都执行该命令操作。
逗号(,):可以用逗号隔开的值指定一个列表范围,例如,“1,2,5,7,8,9”
中杠(-):可以用整数之间的中杠表示一个整数范围,例如“2-6”表示“2,3,4,5,6”
正斜线(/):可以用正斜线指定时间的间隔频率,例如“0-23/2”表示每两小时执行一次。同时正斜线可以和星号一起使用
Entry Description Equivalent to
@yearly (or @annually) Run once a year at midnight of 1 January 0 0 1 1 *
@monthly Run once a month at midnight of the first day of the month 0 0 1 * *
@weekly Run once a week at midnight on Sunday morning 0 0 * * 0
@daily Run once a day at midnight 0 0 * * *
@hourly Run once an hour at the beginning of the hour 0 * * * *
@reboot Run at startup N/A
// crond服务
service crond start //启动服务
service crond status //服务状态
service crond stop //关闭服务
service crond restart //重启服务
service crond reload //重新载入配置
// crontab命令
crontab(选项)(参数)
-e:编辑该用户的计时器设置;
-l:列出该用户的计时器设置;
-r:删除该用户的计时器设置;
// crontab文件(/etc/crontab)
SHELL=/bin/bash(指定shell)
PATH=/sbin:/bin:/usr/sbin:/usr/bin(系统执行命令的路径)
MAILTO=root
51 * * * * root run-parts /etc/cron.hourly
24 7 * * * root run-parts /etc/cron.daily
22 4 * * 0 root run-parts /etc/cron.weekly
42 4 1 * * root run-parts /etc/cron.monthly
Tips:
若任务是每小时、每日、每周、或每月地执行,可以将脚本任务添加到/etc/cron.hourly、/etc/cron.daily等目录中。
当然也可以在/etc/cron.d写定时文件,该目录中的所有文件使用和/etc/crontab一样使用标准语法。