From 826368102ba6bb6dc4726034a4617b6496173f1e Mon Sep 17 00:00:00 2001 From: Jakob Zahn Date: Sun, 22 Dec 2024 22:10:26 +0100 Subject: [PATCH] Change more variable names --- UserManual.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/UserManual.md b/UserManual.md index 01a2ce4..c1354e8 100644 --- a/UserManual.md +++ b/UserManual.md @@ -760,15 +760,15 @@ Finally, variables supplied on the command-line call to `laminarc queue`, `lamin `laminarc` commands are: -- `queue [JOB [PARAMS...]]...` adds one or more jobs to the queue with optional parameters, returning immediately. -- `start [JOB [PARAMS...]]...` starts one or more jobs with optional parameters, returning when the jobs begin execution. -- `run [JOB [PARAMS...]]...` triggers one or more jobs with optional parameters and waits for the completion of all jobs. -- `--next` may be passed before `JOB` in order to place the job at the front of the queue instead of at the end. -- `set [VARIABLE=VALUE]...` sets one or more variables to be exported in subsequent scripts for the run identified by the `$JOB` and `$RUN` environment variables +- `queue [$JOB [PARAMS...]]...` adds one or more jobs to the queue with optional parameters, returning immediately. +- `start [$JOB [PARAMS...]]...` starts one or more jobs with optional parameters, returning when the jobs begin execution. +- `run [$JOB [PARAMS...]]...` triggers one or more jobs with optional parameters and waits for the completion of all jobs. +- `--next` may be passed before `$JOB` in order to place the job at the front of the queue instead of at the end. +- `set [KEY=VALUE]...` sets one or more variables to be exported in subsequent scripts for the run identified by the `$JOB` and `$RUN` environment variables - `show-jobs` shows the known jobs on the server (`$LAMINAR_HOME/cfg/jobs/*.run`). - `show-running` shows the currently running jobs with their numbers. - `show-queued` shows the names of the jobs waiting in the queue. -- `abort JOB NUMBER` manually aborts a currently running job by name and number. +- `abort $JOB $RUN` manually aborts a currently running job by name and number. `laminarc` connects to `laminard` using the address supplied by the `LAMINAR_HOST` environment variable. If it is not set, `laminarc` will first attempt to use `LAMINAR_BIND_RPC`, which will be available if `laminarc` is executed from a script within `laminard`. If neither `LAMINAR_HOST` nor `LAMINAR_BIND_RPC` is set, `laminarc` will assume a default host of `unix-abstract:laminar`.