forked from ayeowch/bitnodes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstart.sh
More file actions
executable file
·19 lines (14 loc) · 757 Bytes
/
start.sh
File metadata and controls
executable file
·19 lines (14 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash
python -u crawl.py crawl.conf master > crawl.master.out 2>&1 &
python -u crawl.py crawl.conf slave > crawl.slave.1.out 2>&1 &
python -u ping.py ping.conf master > ping.master.out 2>&1 &
python -u ping.py ping.conf slave > ping.slave.1.out 2>&1 &
python -u ping.py ping.conf slave > ping.slave.2.out 2>&1 &
python -u ping.py ping.conf slave > ping.slave.3.out 2>&1 &
python -u ping.py ping.conf slave > ping.slave.4.out 2>&1 &
# export GEVENT_RESOLVER=ares (Recommended only on Linux!)
python -u resolve.py resolve.conf > resolve.out 2>&1 &
python -u export.py export.conf > export.out 2>&1 &
python -u seeder.py seeder.conf > seeder.out 2>&1 &
python -u pcap.py pcap.conf > pcap.1.out 2>&1 &
python -u pcap.py pcap.conf > pcap.2.out 2>&1 &