Klimi's new dotfiles with stow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
302 B

4 years ago
  1. # -*- mode: snippet -*-
  2. # name: cronf
  3. # key: cronf
  4. # --
  5. cron "${1:name}" do
  6. hour "${2:*}"
  7. minute "${3:*}"
  8. day "${4:*}"
  9. weekday "${6:*}"
  10. command "${7:/bin/true}"
  11. user "${8:root}"
  12. mailto "${9:root@example.com}"
  13. path "${10:/bin:/usr/bin}"
  14. home "${11:/tmp}"
  15. shell "${12:/bin/bash}"
  16. end