@cryptotaxi247 / kubo / commits / c692286b4

Alphabetized subcommands

License: MIT Signed-off-by: Richard Littauer <richard.littauer@gmail.com>

Richard Littauer committed Mar 15, 2016 at 13:23 UTC c692286b41db28706307e2956d1dbdc22a385c3e
1 file changed +6 -6
core/commands/object/object.go
+6 -6
@@ -47,24 +47,24 @@ var ObjectCmd = &cmds.Command{
47 'ipfs object' is a plumbing command used to manipulate DAG objects
48 directly.`,
49 Synopsis: `
50 -ipfs object get <key> - Get the DAG node named by <key>
51 -ipfs object put <data> - Stores input, outputs its key
50 ipfs object data <key> - Outputs raw bytes in an object
51 +ipfs object get <key> - Get the DAG node named by <key>
52 ipfs object links <key> - Outputs links pointed to by object
54 -ipfs object stat <key> - Outputs statistics of object
53 ipfs object new <template> - Create new ipfs objects
54 ipfs object patch <args> - Create new object from old ones
55 +ipfs object put <data> - Stores input, outputs its key
56 +ipfs object stat <key> - Outputs statistics of object
57 `,
58 },
59
60 Subcommands: map[string]*cmds.Command{
61 "data": ObjectDataCmd,
62 - "links": ObjectLinksCmd,
62 "get": ObjectGetCmd,
64 - "put": ObjectPutCmd,
65 - "stat": ObjectStatCmd,
63 + "links": ObjectLinksCmd,
64 "new": ObjectNewCmd,
65 "patch": ObjectPatchCmd,
66 + "put": ObjectPutCmd,
67 + "stat": ObjectStatCmd,
68 },
69 }
70