Advertisement
Guest User

Untitled

a guest
Oct 29th, 2012
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. 之前的crontab -l
  2.  
  3. */5 * * * * /tmp/test1
  4. * * * * * /tmp/test2
  5.  
  6. 要追加的内容
  7.  
  8. */6 * * * * /tmp/test1
  9. * * * * * /tmp/test3
  10.  
  11. 最终想要的效果是 crontab -l 输出为
  12.  
  13. * * * * * /tmp/test2
  14. */6 * * * * /tmp/test1
  15. * * * * * /tmp/test3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement