mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-03 20:55:51 +02:00
*: fix example websites (#16462)
This commit is contained in:
parent
7b99e79793
commit
8a7c8de8f6
4 changed files with 7 additions and 7 deletions
|
@ -11,4 +11,4 @@
|
|||
|
||||
- Print a file from `stdin` to `stdout`:
|
||||
|
||||
`{{wget -O - https://examplewebsite.com/file}} | ippeveps`
|
||||
`{{wget -O - https://example.com/file}} | ippeveps`
|
||||
|
|
|
@ -11,4 +11,4 @@
|
|||
|
||||
- Print a file from `stdin` to `stdout`:
|
||||
|
||||
`{{wget {{[-O|--output-document]}} - https://examplewebsite.com/file}} | ippeveps`
|
||||
`{{wget {{[-O|--output-document]}} - https://example.com/file}} | ippeveps`
|
||||
|
|
|
@ -21,4 +21,4 @@
|
|||
|
||||
- Expose TLS traffic for a specific host and port:
|
||||
|
||||
`ngrok tls -hostname={{foo.com}} {{443}}`
|
||||
`ngrok tls -hostname={{example.com}} {{443}}`
|
||||
|
|
|
@ -5,19 +5,19 @@
|
|||
|
||||
- Match the sender address using a case-insensitive search:
|
||||
|
||||
`exiqgrep -f '<{{email@somedomain.com}}>'`
|
||||
`exiqgrep -f '<{{email@example.com}}>'`
|
||||
|
||||
- Match the sender address and display message IDs only:
|
||||
|
||||
`exiqgrep -i -f '<{{email@somedomain.com}}>'`
|
||||
`exiqgrep -i -f '<{{email@example.com}}>'`
|
||||
|
||||
- Match the recipient address:
|
||||
|
||||
`exiqgrep -r '{{email@somedomain.com}}'`
|
||||
`exiqgrep -r '{{email@example.com}}'`
|
||||
|
||||
- Remove all messages matching the sender address from the queue:
|
||||
|
||||
`exiqgrep -i -f '<{{email@somedomain.com}}>' | xargs exim -Mrm`
|
||||
`exiqgrep -i -f '<{{email@example.com}}>' | xargs exim -Mrm`
|
||||
|
||||
- Test for bounced messages:
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue