1
0
Fork 0
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:
Managor 2025-05-11 13:56:41 +03:00 committed by GitHub
parent 7b99e79793
commit 8a7c8de8f6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 7 additions and 7 deletions

View file

@ -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`

View file

@ -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`

View file

@ -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}}`

View file

@ -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: