Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
string[] args = {key, project};
interval varInterval = "30m";
runJobInAndRepeat("script.sil", args, varInterval);

The example above will create creates a job that will run runs the script "script.sil" every 30 minutes. (the The job running will repeat every 30 minutes).


In "script.sil" you can access the args using the next syntax:

...