Commit 4eaf38c6 authored by Matt Bell's avatar Matt Bell Committed by Juan Batiz-Benet

object: Added a synopsis

parent d842c3c9
......@@ -25,8 +25,16 @@ type Node struct {
var objectCmd = &cmds.Command{
Helptext: cmds.HelpText{
Tagline: "Interact with ipfs objects",
ShortDescription: "'ipfs object' is a plumbing command used to manipulate DAG objects directly.",
Tagline: "Interact with ipfs objects",
ShortDescription: `
'ipfs object' is a plumbing command used to manipulate DAG objects
directly.`,
Synopsis: `
ipfs object get <key> - Get the DAG node named by <key>
ipfs object put <data> <encoding> - Stores input, outputs its key
ipfs object data <key> - Outputs raw bytes in an object
ipfs object links <key> - Outputs links pointed to by object
`,
},
Subcommands: map[string]*cmds.Command{
......
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