Move pages under tldr, lint run.sh, update docs

This commit is contained in:
2024-02-21 13:58:43 +02:00
parent 3d653cc7e6
commit 2c475fa62d
4806 changed files with 36 additions and 35 deletions

33
tldr/linux/exiqgrep Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# exiqgrep
> Perl script offering possibilities to `grep` in the Exim queue output.
> More information: <https://www.exim.org/exim-html-current/doc/html/spec_html/ch-exim_utilities.html>.
- Match the sender address using a case-insensitive search:
`exiqgrep -f '<{{email@somedomain.com}}>'`
- Match the sender address and display message IDs only:
`exiqgrep -i -f '<{{email@somedomain.com}}>'`
- Match the recipient address:
`exiqgrep -r '{{email@somedomain.com}}'`
- Remove all messages matching the sender address from the queue:
`exiqgrep -i -f '<{{email@somedomain.com}}>' | xargs exim -Mrm`
- Test for bounced messages:
`exiqgrep -f '^<>$'`
- Display the count of bounced messages:
`exiqgrep -c -f '^<>$'`