@@ -0,0 +1,6 @@ | |||||
OctavE : octave.c | |||||
cc -Wall -o OctavE octave.c -lpthread -lreadline | |||||
clean : | |||||
rm -f OctavE | |||||
@@ -0,0 +1,116 @@ | |||||
-google.org | |||||
-adsrvr.org | |||||
.org | |||||
.fr | |||||
.net | |||||
-doubleclick.net | |||||
windy.com | |||||
deepl.com | |||||
boursorama.com | |||||
boursobank.com | |||||
github.com | |||||
kimsufi.com | |||||
qwant.com | |||||
mediadecathlon.com | |||||
decathlon.io | |||||
docs.rs | |||||
3.0.0.0/8 | |||||
13.24.0.0/13 | |||||
13.244.0.0/14 | |||||
13.248.0.0/14 | |||||
13.32.0.0/12 | |||||
13.48.0.0/13 | |||||
13.56.0.0/14 | |||||
15.179.0.0/16 | |||||
15.180.0.0/14 | |||||
15.184.0.0/14 | |||||
15.188.0.0/16 | |||||
15.196.0.0/14 | |||||
15.200.0.0/16 | |||||
15.236.0.0/14 | |||||
17.0.0.0/8 | |||||
18.128.0.0/9 | |||||
18.32.0.0/11 | |||||
18.64.0.0/10 | |||||
20.0.0.0/11 | |||||
20.33.0.0/16 | |||||
20.34.0.0/15 | |||||
20.36.0.0/14 | |||||
20.40.0.0/13 | |||||
20.48.0.0/12 | |||||
20.64.0.0/10 | |||||
20.128.0.0/16 | |||||
34.128.0.0/10 | |||||
34.192.0.0/10 | |||||
34.64.0.0/10 | |||||
35.152.0.0/13 | |||||
35.160.0.0/12 | |||||
35.176.0.0/13 | |||||
35.184.0.0/13 | |||||
35.192.0.0/12 | |||||
35.208.0.0/12 | |||||
35.224.0.0/12 | |||||
35.240.0.0/13 | |||||
35.71.128.0/17 | |||||
35.71.64.0/18 | |||||
35.72.0.0/13 | |||||
35.80.0.0/12 | |||||
44.192.0.0/10 | |||||
47.235.0.0/16 | |||||
47.236.0.0/14 | |||||
47.240.0.0/14 | |||||
47.244.0.0/15 | |||||
47.246.0.0/16 | |||||
50.31.128.0/17 | |||||
52.0.0.0/10 | |||||
52.192.0.0/12 | |||||
52.208.0.0/13 | |||||
52.216.0.0/14 | |||||
52.220.0.0/15 | |||||
52.222.128.0/17 | |||||
52.223.0.0/17 | |||||
52.223.128.0/18 | |||||
52.64.0.0/12 | |||||
52.84.0.0/14 | |||||
52.88.0.0/13 | |||||
54.144.0.0/12 | |||||
54.160.0.0/11 | |||||
54.192.0.0/12 | |||||
54.208.0.0/13 | |||||
54.216.0.0/14 | |||||
54.220.0.0/15 | |||||
54.224.0.0/11 | |||||
54.64.0.0/11 | |||||
63.32.0.0/14 | |||||
67.55.4.0/22 | |||||
67.55.8.0/21 | |||||
67.55.16.0/20 | |||||
67.55.32.0/19 | |||||
76.223.0.0/17 | |||||
76.223.128.0/19 | |||||
76.223.160.0/20 | |||||
99.80.0.0/15 | |||||
99.85.128.0/17 | |||||
99.86.0.0/16 | |||||
99.87.0.0/17 | |||||
99.87.128.0/18 | |||||
108.128.0.0/13 | |||||
108.136.0.0/14 | |||||
142.250.0.0/15 | |||||
162.158.0.0/15 | |||||
172.217.0.0/16 | |||||
199.59.148.0/22 | |||||
209.67.0.0/16 | |||||
216.58.192.0/19 | |||||
# ajouts | |||||
media.adeo.com | |||||
annonces-marine.com | |||||
youboat.com | |||||
mozilla.com | |||||
films.viewsurf.com | |||||
keenetic.pro | |||||
magzdb.elibrary.keenetic.pro | |||||
manomano.com | |||||
www.dailymotion.com | |||||
aliexpress.com |
@@ -0,0 +1,22 @@ | |||||
#! /bin/sh | |||||
explic () | |||||
{ | |||||
echo "Utilisation : $0 PID_OctavE mots_cles !" >&2 | |||||
exit 1 | |||||
} | |||||
[ $# != 2 ] && explic | |||||
liste=`journalctl --system|grep 'OctavE\['$1'\].*'$2|grep -v ' ERR: '|grep ': Re[pq]\. '|cut -d' ' -f7|sort|uniq` | |||||
p="" | |||||
for v in $liste | |||||
do | |||||
p=$p"|"$v | |||||
done | |||||
[ "$p" = "" ] && exit 0 | |||||
p2=`echo $p|sed 's/|//'` | |||||
# echo '('$p2')' | |||||
journalctl --system|grep 'OctavE\['$1'\]'|egrep '('$p2')'|cut -d' ' -f1-3,6- | |||||
exit 0 | |||||