Commit d2d29a80 authored by Brian Tiger Chow's avatar Brian Tiger Chow Committed by Juan Batiz-Benet

docs(commands2/cat) help text

parent 2a15fe8e
......@@ -13,7 +13,11 @@ var catCmd = &cmds.Command{
Arguments: []cmds.Argument{
cmds.Argument{"object", cmds.ArgString, false, true},
},
Help: "TODO",
Help: `ipfs cat <ipfs-path> - Show ipfs object data.
Retrieves the object named by <ipfs-path> and displays the Data
it contains.
`,
Run: func(res cmds.Response, req cmds.Request) {
node := req.Context().Node
paths := make([]string, 0, len(req.Arguments()))
......
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