Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ panicparse helps make sense of Go crash dumps:
* Ubuntu (bash v4 or zsh): `|&`
* macOS, [install bash 4+](README.md#updating-bash-on-macos), then: `|&`
* Windows _or_ macOS with stock bash v3: `2>&1 |`
* [Fish](http://fishshell.com/) shell: `^|`
* [Fish](http://fishshell.com/) shell: `&|`
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That was just a typo



#### Longer version
Expand All @@ -75,7 +75,7 @@ have this shortcut, so use the long form:


**Fish**: `&|` redirects stderr and stdout. It's an alias for `2>&1 |`
([fish piping](https://fishshell.com/docs/current/index.html#piping)):
([fish piping](https://fishshell.com/docs/current/language.html#piping)):
Comment on lines 77 to +78
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The syntax there is correct, but the URL changed


go test -v &| pp

Expand Down