三种方法
1. 直接以用户登录
1su someone
2crontab -e
PS: 对于没有 bash 登录权限的用户不可用
2. 以 root 用户登录,创建用户的 crontab 文件
1sudo crontab -e -u someone
PS: crontab
文件为 someone
用户创建,不好管理
3. 修改系统 crontab 文件,指定用户执行
1vi /etc/crontab
文件内容如下:
1SHELL=/bin/bash
2PATH=/sbin:/bin:/usr/sbin:/usr/bin
3MAILTO=root
4
5# For details see man 4 crontabs
6
7# Example of job definition:
8# .---------------- minute (0 - 59)
9# | .------------- hour (0 - 23)
10# | | .---------- day of month (1 - 31)
11# | | | .------- month (1 - 12) OR jan,feb,mar,apr ...
12# | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
13# | | | | |
14# * * * * * user-name command to be executed
在命令前添加 用户名即可
1* * * * * someone command to be executed