mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-21 15:26:15 -04:00
corrrection of crontab values
This commit is contained in:
parent
08d977b8cd
commit
dd8312bd54
1 changed files with 4 additions and 4 deletions
|
@ -21,25 +21,25 @@ const helpers = [
|
||||||
{
|
{
|
||||||
symbol: '*',
|
symbol: '*',
|
||||||
meaning: 'Any value',
|
meaning: 'Any value',
|
||||||
example: '* * * *',
|
example: '* * * * *',
|
||||||
equivalent: 'Every minute',
|
equivalent: 'Every minute',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
symbol: '-',
|
symbol: '-',
|
||||||
meaning: 'Range of values',
|
meaning: 'Range of values',
|
||||||
example: '1-10 * * *',
|
example: '1-10 * * * *',
|
||||||
equivalent: 'Minutes 1 through 10',
|
equivalent: 'Minutes 1 through 10',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
symbol: ',',
|
symbol: ',',
|
||||||
meaning: 'List of values',
|
meaning: 'List of values',
|
||||||
example: '1,10 * * *',
|
example: '1,10 * * * *',
|
||||||
equivalent: 'At minutes 1 and 10',
|
equivalent: 'At minutes 1 and 10',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
symbol: '/',
|
symbol: '/',
|
||||||
meaning: 'Step values',
|
meaning: 'Step values',
|
||||||
example: '*/10 * * *',
|
example: '*/10 * * * *',
|
||||||
equivalent: 'Every 10 minutes',
|
equivalent: 'Every 10 minutes',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue