アクセスログで日付ごとにアクセス数を算出する

$cut -d " " -f 4 /pass/accesslog | cut -c 2-12 | sort | uniq

で日付のみを抜き出す。 出力結果例

17/Apr/2015
18/Apr/2015
$grep '17/Apr/2015' /root/script/accesslog | cut -d " " -f 1 | sort | uniq | wc -l

で特定の日にちのアクセス数を算出する。 出力結果例

6555