Linux
如何找到唯一的訪問日誌 IP
我只需要獲取今天訪問我伺服器的所有 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
其中包含字元串的行