|
@@ -4,6 +4,53 @@ ffoo import inigrep
|
4
|
4
|
ffoo import pretty
|
5
|
5
|
|
6
|
6
|
|
|
7
|
+saturnin_urimagic__scan() {
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+ local d=$(mktemp -d -t saturnin_urimagic.XXXXXXXX)
|
|
23
|
+ local p=__saturnin_urimagic__
|
|
24
|
+ pushd $d >&/dev/null
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+ mkfifo maybe_uris maybe_ids maybe_exps maybe_tags maybe_kws \
|
|
29
|
+ uris uris_from_ids uris_from_exps uris_from_tags uris_from_kws
|
|
30
|
+ cat | tee maybe_uris maybe_ids maybe_exps maybe_tags maybe_kws \
|
|
31
|
+ >/dev/null &
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+ < maybe_uris ${p}flt_uris > uris &
|
|
36
|
+ < maybe_ids ${p}flt_ids | ${p}deref > uris_from_ids &
|
|
37
|
+ < maybe_exps ${p}flt_exps | ${p}deref > uris_from_exps &
|
|
38
|
+ < maybe_tags ${p}flt_tags | ${p}deref > uris_from_tags &
|
|
39
|
+ < maybe_kws ${p}flt_kws | ${p}deref > uris_from_kws &
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+ {
|
|
44
|
+ cat uris
|
|
45
|
+ cat uris_from_ids
|
|
46
|
+ cat uris_from_exps
|
|
47
|
+ cat uris_from_tags
|
|
48
|
+ cat uris_from_kws
|
|
49
|
+ } | grep .
|
|
50
|
+ popd >&/dev/null
|
|
51
|
+ rm -rf $d
|
|
52
|
+}
|
|
53
|
+
|
7
|
54
|
__saturnin_urimagic__deref() {
|
8
|
55
|
|
9
|
56
|
|
|
@@ -79,50 +126,3 @@ __saturnin_urimagic__flt_uris() {
|
79
|
126
|
print "$1\n";
|
80
|
127
|
'
|
81
|
128
|
}
|
82
|
|
-
|
83
|
|
-saturnin_urimagic__scan() {
|
84
|
|
-
|
85
|
|
-
|
86
|
|
-
|
87
|
|
-
|
88
|
|
-
|
89
|
|
-
|
90
|
|
-
|
91
|
|
-
|
92
|
|
-
|
93
|
|
-
|
94
|
|
-
|
95
|
|
-
|
96
|
|
-
|
97
|
|
-
|
98
|
|
- local d=$(mktemp -d -t saturnin_urimagic.XXXXXXXX)
|
99
|
|
- local p=__saturnin_urimagic__
|
100
|
|
- pushd $d >&/dev/null
|
101
|
|
-
|
102
|
|
-
|
103
|
|
-
|
104
|
|
- mkfifo maybe_uris maybe_ids maybe_exps maybe_tags maybe_kws \
|
105
|
|
- uris uris_from_ids uris_from_exps uris_from_tags uris_from_kws
|
106
|
|
- cat | tee maybe_uris maybe_ids maybe_exps maybe_tags maybe_kws \
|
107
|
|
- >/dev/null &
|
108
|
|
-
|
109
|
|
-
|
110
|
|
-
|
111
|
|
- < maybe_uris ${p}flt_uris > uris &
|
112
|
|
- < maybe_ids ${p}flt_ids | ${p}deref > uris_from_ids &
|
113
|
|
- < maybe_exps ${p}flt_exps | ${p}deref > uris_from_exps &
|
114
|
|
- < maybe_tags ${p}flt_tags | ${p}deref > uris_from_tags &
|
115
|
|
- < maybe_kws ${p}flt_kws | ${p}deref > uris_from_kws &
|
116
|
|
-
|
117
|
|
-
|
118
|
|
-
|
119
|
|
- {
|
120
|
|
- cat uris
|
121
|
|
- cat uris_from_ids
|
122
|
|
- cat uris_from_exps
|
123
|
|
- cat uris_from_tags
|
124
|
|
- cat uris_from_kws
|
125
|
|
- } | grep .
|
126
|
|
- popd >&/dev/null
|
127
|
|
- rm -rf $d
|
128
|
|
-}
|