瀏覽代碼

Added comments about sqlite db creation

master
Maxime Wack 6 年之前
父節點
當前提交
414c20489b
共有 1 個檔案被更改,包括 4 行新增0 行删除
  1. +4
    -0
      geoip.R

+ 4
- 0
geoip.R 查看文件

@@ -1,6 +1,10 @@
library(tidyverse)
library(RSQLite)
library(ipapi)
# sqlite3 access.db
# create table access(ip, null1, user, timestamp, zone, req, status, size, referer, agent, null2);
# .separator " "
# .import access.log access

dbConnect(SQLite(), "access.db") %>%
dbGetQuery("delete from access where ip = '192.168.0.254' or user = 'maxx' or agent like '%bot%' or ip = '164.2.255.244';")


Loading…
取消
儲存