Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to write Nginx log processing script under windows

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)05/31 Report--

This article mainly explains "how to write Nginx log processing scripts under windows". The explanation in this article is simple and clear, easy to learn and understand. Please follow the ideas of Xiaobian and go deep into it together to study and learn "how to write Nginx log processing scripts under windows"!

Run Description: 20120917.txt is the log to be analyzed, last.csv is the statistical result (open with execl for convenient statistics and sorting).

1. [Documentation]

2. [Image] Run Screenshot.jpg

3. [Image] Running Results

4. [Code] Save as bat Double click to open

The copy code is as follows:

@echo off

setlocal enabledelayedexpansion

rem extracts ip to ip.txt file

awk.exe "{a[$1]+=1;}end{for(i in a){print i;}}" 20120917.txt > ip.txt

rem reads ip in ip.txt file line by line and calls ip address source query interface of youdao.com

del result.txt

del last.txt

del last.csv

for /f "delims=" %%k in (ip.txt) do (

set /a b+=1

wget-1.10.2.exe "http://www.youdao.com/smartresult-xml/search.s? type=ip&q=%%k" --output-document=temp.xml >nul 2>nul

echo processing %%k

for /f "delims=" %%i in (temp.xml) do (

set /a num+=1

set str=%%i

set str1=">%%k,! str! " %%z in ('type result.txt') do (

for /f "delims=

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report