Linux

如何找到唯一的訪問日誌 IP

  • April 20, 2022

我只需要獲取今天訪問我伺服器的所有 IP。從下面的命令我可以得到所有的IP,但我只需要得到今天的IP..

sudo awk '{ print $1}' /etc/httpd/logs/access_log | sort | uniq -c | sort -nr | head -n 10

我需要grep '20/Apr'acccess_log. 有人可以幫我做到這一點嗎?

在開始時,awk您可以添加:

sudo awk '/20\/Apr/ { print $1}' /etc/httpd/logs/access_log

這將搜尋20/Apr其中包含字元串的行

引用自:https://unix.stackexchange.com/questions/699727