forked from ayeowch/bitnodes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstart.sh
executable file
·23 lines (18 loc) · 1.38 KB
/
start.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash
# --- feathercoin mainnet: 41151a21 (db = 0) ---
python -u crawl.py conf/crawl.41151a21.conf master > log/crawl.41151a21.master.out 2>&1 &
python -u crawl.py conf/crawl.41151a21.conf slave > log/crawl.41151a21.slave.1.out 2>&1 &
python -u crawl.py conf/crawl.41151a21.conf slave > log/crawl.41151a21.slave.2.out 2>&1 &
python -u ping.py conf/ping.41151a21.conf master > log/ping.41151a21.master.out 2>&1 &
python -u ping.py conf/ping.41151a21.conf slave > log/ping.41151a21.slave.1.out 2>&1 &
python -u ping.py conf/ping.41151a21.conf slave > log/ping.41151a21.slave.2.out 2>&1 &
python -u ping.py conf/ping.41151a21.conf slave > log/ping.41151a21.slave.3.out 2>&1 &
python -u ping.py conf/ping.41151a21.conf slave > log/ping.41151a21.slave.4.out 2>&1 &
python -u ping.py conf/ping.41151a21.conf slave > log/ping.41151a21.slave.5.out 2>&1 &
python -u ping.py conf/ping.41151a21.conf slave > log/ping.41151a21.slave.6.out 2>&1 &
python -u resolve.py conf/resolve.41151a21.conf > log/resolve.41151a21.out 2>&1 &
python -u export.py conf/export.41151a21.conf > log/export.41151a21.out 2>&1 &
python -u seeder.py conf/seeder.41151a21.conf > log/seeder.41151a21.out 2>&1 &
python -u pcap.py conf/pcap.41151a21.conf > log/pcap.41151a21.1.out 2>&1 &
python -u pcap.py conf/pcap.41151a21.conf > log/pcap.41151a21.2.out 2>&1 &
python -u pcap.py conf/pcap.41151a21.conf > log/pcap.41151a21.3.out 2>&1 &