Skip to content
Snippets Groups Projects
Commit 62a56148 authored by William Ma's avatar William Ma
Browse files

list: Update documentation

parent 8f3d2309
No related branches found
No related tags found
No related merge requests found
...@@ -32,7 +32,7 @@ module Homebrew ...@@ -32,7 +32,7 @@ module Homebrew
switch "--pinned", switch "--pinned",
description: "Show the versions of pinned formulae, or only the specified (pinned) "\ description: "Show the versions of pinned formulae, or only the specified (pinned) "\
"formulae if <formula> are provided. See also `pin`, `unpin`." "formulae if <formula> are provided. See also `pin`, `unpin`."
switch "--casks", switch "--cask",
description: "List casks" description: "List casks"
# passed through to ls # passed through to ls
switch "-1", switch "-1",
...@@ -47,14 +47,14 @@ module Homebrew ...@@ -47,14 +47,14 @@ module Homebrew
description: "Sort by time modified, listing most recently modified first." description: "Sort by time modified, listing most recently modified first."
switch :verbose switch :verbose
switch :debug switch :debug
["--unbrewed", "--multiple", "--pinned", "-l", "-r", "-t"].each { |flag| conflicts "--casks", flag } ["--unbrewed", "--multiple", "--pinned", "-l", "-r", "-t"].each { |flag| conflicts "--cask", flag }
end end
end end
def list def list
list_args.parse list_args.parse
return list_casks if args.casks? return list_casks if args.cask?
return list_unbrewed if args.unbrewed? return list_unbrewed if args.unbrewed?
......
...@@ -290,6 +290,8 @@ If *`formula`* is provided, summarise the paths within its current keg. ...@@ -290,6 +290,8 @@ If *`formula`* is provided, summarise the paths within its current keg.
Only show formulae with multiple versions installed. Only show formulae with multiple versions installed.
* `--pinned`: * `--pinned`:
Show the versions of pinned formulae, or only the specified (pinned) formulae if *`formula`* are provided. See also `pin`, `unpin`. Show the versions of pinned formulae, or only the specified (pinned) formulae if *`formula`* are provided. See also `pin`, `unpin`.
* `--cask`:
List casks
* `-1`: * `-1`:
Force output to be one entry per line. This is the default when output is not to a terminal. Force output to be one entry per line. This is the default when output is not to a terminal.
* `-l`: * `-l`:
......
...@@ -393,6 +393,10 @@ Only show formulae with multiple versions installed\. ...@@ -393,6 +393,10 @@ Only show formulae with multiple versions installed\.
Show the versions of pinned formulae, or only the specified (pinned) formulae if \fIformula\fR are provided\. See also \fBpin\fR, \fBunpin\fR\. Show the versions of pinned formulae, or only the specified (pinned) formulae if \fIformula\fR are provided\. See also \fBpin\fR, \fBunpin\fR\.
. .
.TP .TP
\fB\-\-cask\fR
List casks
.
.TP
\fB\-1\fR \fB\-1\fR
Force output to be one entry per line\. This is the default when output is not to a terminal\. Force output to be one entry per line\. This is the default when output is not to a terminal\.
. .
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment