Browse Source

Added comments about sqlite db creation

master
Maxime Wack 6 years ago
parent
commit
414c20489b
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      geoip.R

+ 4
- 0
geoip.R View File

@@ -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…
Cancel
Save