10 lines
139 B
Plaintext
10 lines
139 B
Plaintext
|
# -*- mode: snippet -*-
|
||
|
# name: cron
|
||
|
# key: cron
|
||
|
# --
|
||
|
cron "${1:name}" do
|
||
|
hour "${2:5}"
|
||
|
minute "${3:0}"
|
||
|
|
||
|
command "${4:/bin/true}"
|
||
|
end
|