mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-21 21:06:12 +03:00
6 lines
189 B
Bash
6 lines
189 B
Bash
|
#!/bin/sh
|
||
|
for i in /tmp/trace.*; do
|
||
|
cut -d' ' -f1 $i | LC_ALL=C sort -u | sed 's/\/$//' | LC_ALL=C sort -u >$i.sorted
|
||
|
done
|
||
|
cat /tmp/trace.*.sorted | LC_ALL=C sort -u >/tmp/detected-files
|