diff --git a/core/commands/cat.go b/core/commands/cat.go index 09d28bcbc..1e9aaf62a 100644 --- a/core/commands/cat.go +++ b/core/commands/cat.go @@ -16,10 +16,7 @@ const progressBarMinSize = 1024 * 1024 * 8 // show progress bar for outputs > 8M var CatCmd = &cmds.Command{ Helptext: cmds.HelpText{ Tagline: "Show IPFS object data.", - ShortDescription: ` -Retrieves the object named by and outputs the data -it contains. -`, + ShortDescription: "Displays the data contained by an IPFS or IPNS object(s) at the given path.", }, Arguments: []cmds.Argument{ diff --git a/core/commands/get.go b/core/commands/get.go index e133a5f9c..492fe4f75 100644 --- a/core/commands/get.go +++ b/core/commands/get.go @@ -24,7 +24,7 @@ var GetCmd = &cmds.Command{ Helptext: cmds.HelpText{ Tagline: "Download IPFS objects.", ShortDescription: ` -Retrieves the object named by and stores the data to disk. +Stores to disk the data contained an IPFS or IPNS object(s) at the given path. By default, the output will be stored at ./, but an alternate path can be specified with '--output=' or '-o='. diff --git a/core/commands/pin.go b/core/commands/pin.go index 28780940f..d64356d0d 100644 --- a/core/commands/pin.go +++ b/core/commands/pin.go @@ -34,10 +34,7 @@ type PinOutput struct { var addPinCmd = &cmds.Command{ Helptext: cmds.HelpText{ Tagline: "Pins objects to local storage.", - ShortDescription: ` -Retrieves the object named by and stores it locally -on disk. -`, + ShortDescription: "Stores an IPFS object(s) from a given path locally to disk.", }, Arguments: []cmds.Argument{ diff --git a/core/commands/refs.go b/core/commands/refs.go index 21ebdd82e..c910cf485 100644 --- a/core/commands/refs.go +++ b/core/commands/refs.go @@ -35,12 +35,11 @@ var RefsCmd = &cmds.Command{ Helptext: cmds.HelpText{ Tagline: "Lists links (references) from an object.", ShortDescription: ` -Retrieves the object named by and displays the link -hashes it contains, with the following format: +Displays the link hashes an IPFS or IPNS object(s) contains, with the following format: -Note: list all refs recursively with -r. +Note: List all referencess recursively by using the flag '-r'. `, }, Subcommands: map[string]*cmds.Command{ diff --git a/core/commands/unixfs/ls.go b/core/commands/unixfs/ls.go index e33ca94a2..98c54de58 100644 --- a/core/commands/unixfs/ls.go +++ b/core/commands/unixfs/ls.go @@ -36,8 +36,7 @@ var LsCmd = &cmds.Command{ Helptext: cmds.HelpText{ Tagline: "List directory contents for Unix filesystem objects.", ShortDescription: ` -Retrieves the object named by and displays the -contents. +Displays the contents of an IPFS or IPNS object(s) at the given path. The JSON output contains size information. For files, the child size is the total size of the file contents. For directories, the child