| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 | [[elasticsearch-croneval]]== elasticsearch-cronevalValidates and evaluates a <<cron-expressions,cron expression>>. [discrete]=== Synopsis[source,shell]--------------------------------------------------bin/elasticsearch-croneval <expression>[-c, --count <integer>] [-h, --help]([-s, --silent] | [-v, --verbose])--------------------------------------------------[discrete]=== DescriptionThis command enables you to verify that yourcron expressions are valid for use with{es} and produce the expected results.This command is provided in the `$ES_HOME/bin` directory.[discrete][[elasticsearch-croneval-parameters]]=== Parameters`-c, --count` <Integer>::  The number of future times this expression will be triggered. The default  value is `10`.`-d, --detail`::  Shows detail for invalid cron expression. It will print the stacktrace if the  expression is not valid.`-h, --help`::  Returns all of the command parameters.`-s, --silent`::  Shows minimal output.                                 `-v, --verbose`::  Shows verbose output.[discrete]=== ExampleIf the cron expression is valid, the following command displays the next20 times that the schedule will be triggered:[source,bash]--------------------------------------------------bin/elasticsearch-croneval "0 0/1 * * * ?" -c 20--------------------------------------------------
 |