job describe for experimental
Add a description to a background job.
Signature
> job describe {flags} (id) (description)
Parameters
id: The id of the job to describe.description: The description to assign to the job.
Input/output types:
| input | output |
|---|---|
| nothing | nothing |
Examples
Describe a newly spawned job.
> let id = job spawn { sleep 10sec }; job describe $id abcRemove the description of a job.
> let id = job spawn { sleep 10sec }; job describe $id abc; job describe $id null