From 53b0b6e5917f57a76d88ec1f34ba1b9493c5ed14 Mon Sep 17 00:00:00 2001 From: Jakob Zahn Date: Sun, 5 Jan 2025 17:40:03 +0100 Subject: [PATCH] Remove dollars from bash signatures --- UserManual.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/UserManual.md b/UserManual.md index 988ec45..8b91fe8 100644 --- a/UserManual.md +++ b/UserManual.md @@ -762,15 +762,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 [KEY=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 $RUN` 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`.