You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: assets/commands/brew-update.md
+1-4Lines changed: 1 addition & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ Fetch the latest Homebrew and package definitions
30
30
31
31
# DESCRIPTION
32
32
33
-
**brew update** fetches the newest version of Homebrew and all formulae definitions from GitHub. It updates Homebrew itself and refreshes the list of available packages.
33
+
**brew update** fetches the newest version of Homebrew and all formulae from GitHub using git, and performs any necessary migrations.
34
34
35
35
This command does not upgrade installed packages - use **brew upgrade** for that.
36
36
@@ -53,9 +53,6 @@ Aliases: **brew up**
53
53
**--merge**
54
54
> Use git merge instead of git rebase
55
55
56
-
**--quiet, -q**
57
-
> Suppress output
58
-
59
56
# AUTO-UPDATE
60
57
61
58
Homebrew auto-updates before **brew install** by default. Configure with:
**bzgrep**searches for patterns in bzip2-compressed files without decompressing them to disk. It's a wrapper around grep that transparently handles .bz2 files.
29
+
**bzgrep**invokes grep on bzip2-compressed files. If no file is specified, standard input is decompressed if necessary and fed to grep. Otherwise the given files are uncompressed if necessary and fed to grep.
30
30
31
-
The tool provides the same functionality as grep but for compressed files.
31
+
When invoked as **bzegrep** or **bzfgrep**, egrep or fgrep is used instead of grep. The grep program can also be overridden via the **GREP** environment variable.
32
32
33
33
# PARAMETERS
34
34
35
-
Supports standard grep options:
35
+
All options are passed directly to grep:
36
36
37
37
**-i**
38
38
> Case-insensitive search
@@ -49,6 +49,9 @@ Supports standard grep options:
49
49
**-l**
50
50
> List matching files
51
51
52
+
**-e**_pattern_
53
+
> Use pattern as the search pattern (useful for patterns starting with -)
54
+
52
55
**-H**
53
56
> Print filename
54
57
@@ -58,10 +61,10 @@ Supports standard grep options:
58
61
# RELATED COMMANDS
59
62
60
63
**bzegrep**
61
-
> Extended regular expressions (grep -E)
64
+
> Extended regular expressions (egrep / grep -E)
62
65
63
66
**bzfgrep**
64
-
> Fixed strings (grep -F)
67
+
> Fixed strings (fgrep / grep -F)
65
68
66
69
# WORKFLOW
67
70
@@ -80,6 +83,9 @@ bzgrep -C 3 "error" logfile.bz2
80
83
81
84
# Count occurrences
82
85
bzgrep -c "error" logfile.bz2
86
+
87
+
# Override grep with fgrep
88
+
GREP=fgrep bzgrep string files
83
89
```
84
90
85
91
# CAVEATS
@@ -92,4 +98,4 @@ Slower than searching uncompressed files. Must decompress entire file to search.
Copy file name to clipboardExpand all lines: assets/commands/crane-digest.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,9 @@ retrieve image content digest
24
24
**--full-ref**
25
25
> Print the full image reference with digest.
26
26
27
+
**--tarball**_path_
28
+
> Path to tarball containing the image.
29
+
27
30
# DESCRIPTION
28
31
29
32
**crane digest** retrieves the content-addressable digest (SHA256) of a container image. The digest uniquely identifies the image content regardless of tag.
Copy file name to clipboardExpand all lines: assets/commands/cwl-runner.md
+17-2Lines changed: 17 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -58,12 +58,27 @@ Common Workflow Language executor
58
58
**--quiet**
59
59
> Only print warnings and errors.
60
60
61
-
**--strict**
62
-
> Strict validation mode.
61
+
**--validate**
62
+
> Validate the CWL document without running.
63
63
64
64
**--leave-tmpdir**
65
65
> Don't delete temporary directories.
66
66
67
+
**--version**
68
+
> Print version and exit.
69
+
70
+
**--make-template**
71
+
> Generate template input object.
72
+
73
+
**--on-error**_action_
74
+
> Workflow behavior on failure (stop or continue).
75
+
76
+
**--singularity**
77
+
> Use Singularity container runtime instead of Docker.
78
+
79
+
**--podman**
80
+
> Use Podman container runtime instead of Docker.
81
+
67
82
# DESCRIPTION
68
83
69
84
**cwl-runner** executes workflows defined in Common Workflow Language (CWL), a specification for describing analysis workflows in data-intensive sciences. CWL workflows are portable across different execution environments.
0 commit comments