apache access.logで日付期間のIPビュー

apache access.logで日付期間のIPビュー

人々がこのコマンドを使用するのを見たことがあります。このコマンドはリスト/グループ内のすべてのIPSを取得します。

cat access.* | awk '{ print $1 }' | sort | uniq -c | sort -n

ところで、過去2日を選択したいのですが、どうすればいいですか?

ベストアンサー1

tail -100 access.* | awk '{ print $1 }' | sort | uniq -c | sort -n

または

awk '/28\/Mar\/2016/ { print $1 }' access.* | sort | uniq -c | sort -n

おすすめ記事