CLI Guide

Table Of Contents
Examples
To modify a job with the ID of 3 so that it runs every day at 11:00 a.m. type:
VPlexcli:/> schedule list
[0] 30 13 * * 3 syrcollect
[1] * 1 * * * tree
[2] * 2 * * * tree
[3] * 3 * * * tree
VPlexcli:/> schedule modify 3 -t "0 11 * * *" -c tree
See also
schedule list
schedule remove
schedule remove
Removes a scheduled job.
Contexts
All contexts.
Syntax
schedule remove
[-j|--job] job-ID
Arguments
Required arguments
[-j|--job] job-ID * ID of the scheduled job as displayed by the schedule list command.
* - argument is positional.
Example
Remove job with the ID of 3:
VPlexcli:/> schedule list
[0] 30 13 * * 3 syrcollect
[1] * 1 * * * tree
[2] * 2 * * * tree
[3] * 3 * * * tree
VPlexcli:/> schedule remove 3
Removed scheduled job 3.
VPlexcli:/> schedule list
[0] 30 13 * * 3 syrcollect
[1] * 1 * * * tree
[2] * 2 * * * tree
Commands
281