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