Unverified Commit 3e7a1056 authored by Adin Schmahmann's avatar Adin Schmahmann Committed by GitHub

Merge pull request #7887 from ipfs/docs/clarify-repeated-options

docs: comma delimited options in pin remote --help
parents 89ef0d19 3bca9378
......@@ -113,7 +113,14 @@ after remote service confirms 'queued' status, add the '--background' flag:
$ ipfs pin remote add --service=mysrv --name=mypin --background bafkqaaa
Status of background pin requests can be inspected with the 'ls' command:
Status of background pin requests can be inspected with the 'ls' command.
To list all pins for the CID across all statuses:
$ ipfs pin remote ls --service=mysrv --cid=bafkqaaa --status=queued \
--status=pinning --status=pinned --status=failed
NOTE: a comma-separated notation is supported in CLI for convenience:
$ ipfs pin remote ls --service=mysrv --cid=bafkqaaa --status=queued,pinning,pinned,failed
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment