Ask Question Forum:
Model Library:2025-02-08:A.I. model is online auto reply
C
O
M
P
U
T
E
R
2
8
Show
#
ASK
RECENT
←
- Underline
- Bold
- Italic
- Indent
- Step
- Bullet
- Quote
- Cut
- Copy
- Paste
- Table
- Spelling
- Find & Replace
- Undo
- Redo
- Link
- Attach
- Clear
- Code
Below area will not be traslated by Google,you can input code or other languages
Hint:If find spelling error, You need to correct it,1 by 1 or ignore it (code area won't be checked).
X-position of the mouse cursor
Y-position of the mouse cursor
Y-position of the mouse cursor
Testcursor
caretPos
Attachment:===
Asked by hankknight
at 2024-11-15 07:09:04
Point:500 Replies:3 POST_ID:828794USER_ID:11403
Topic:
Linux;;
From a Linux command line is there any way to find out how many email messages have been sent by the server within the past hour?
Expert: duncanb7 replied at 2024-11-15 09:05:25
Thanks , hava a nice day and good weekend
Accepted Solution
Expert: duncanb7 replied at 2024-11-15 08:06:22
500 points EXCELLENT
find /var/log/maillog -mmin -60 |xargs grep -c "Message accepted for delivery" |wc -l
Could you try this that I changed ?
Could you try this that I changed ?
Expert: duncanb7 replied at 2024-11-15 07:24:44
find /var/log/maillog -mmin -60 |xargs grep -c "Message accepted for delivery" |wc -l
/var/log/maillog , mail log file may put into diff dir depend on your system
Note: for find with last hour
==============================
find srch_dir -cmin -60 # creation time
or
find srch_dir -mmin -60 # modification time
or
find srch_dir -amin -60 # access time
/var/log/maillog , mail log file may put into diff dir depend on your system
Note: for find with last hour
==============================
find srch_dir -cmin -60 # creation time
or
find srch_dir -mmin -60 # modification time
or
find srch_dir -amin -60 # access time