본문 바로가기
서버구축 (WEB,DB)

웹로그에서 폰 브라우저명 추출 스크립트

by 날으는물고기 2010. 11. 19.

웹로그에서 폰 브라우저명 추출 스크립트

#!/bin/sh
#
# 웹로그에서 폰 브라우저만 추출
#
# 2009.4.13(월)
# by 좋은진호(truefeel, http://coffeenix.net/ )

DATE="20090412"
if [ "$1" != "" ]; then
   DATE="$1"
fi

for ph in SCH- SPH- SGH- LG- CANU IM- EV- iPhone Nokia BlackBerry
do
   echo "* search : $DATE & $ph"
   grep -h $ph access.log.${DATE}* > phone-${DATE}_${ph}.txt
   sleep 1
done

#
awk -F\" '{print $6}' phone-${DATE}_* |sort | uniq > phone-list_${DATE}.txt

제  목 : 스마트폰, 풀 브라우징폰의 User Agent명(브라우저명)은?
작성자 : 좋은진호(truefeel, http://coffeenix.net/ )
작성일 : 2009.4.13(월)


스마트폰별 User Agent 정리가 잘 되어 있네요.
728x90

댓글