Add files via upload
This commit is contained in:
parent
82bd15ca74
commit
6f780882d5
1 changed files with 19 additions and 0 deletions
19
bt.sh
Normal file
19
bt.sh
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
##!/bin/bash
|
||||||
|
mkdir tracker
|
||||||
|
cd tracker
|
||||||
|
## 列表文件名
|
||||||
|
LIST="tracker.txt"
|
||||||
|
## 临时文件处理
|
||||||
|
trap 'rm -f "${TMPFILE}"' EXIT
|
||||||
|
TMPFILE=$(mktemp)
|
||||||
|
## 获取列表内容并合并,可按照格式自行添加列表
|
||||||
|
curl -k {https://raw.githubusercontent.com/XIU2/TrackersListCollection/master/all.txt,\
|
||||||
|
http://github.itzmx.com/1265578519/OpenTracker/master/tracker.txt,\
|
||||||
|
https://raw.githubusercontent.com/ngosang/trackerslist/master/trackers_all.txt,\
|
||||||
|
https://raw.githubusercontent.com/DeSireFire/animeTrackerList/master/AT_all.txt,\
|
||||||
|
https:trackerslist.com/all.txt\
|
||||||
|
https://www.yaozuopan.top/dynamic/trackerlist.txt,\
|
||||||
|
https://newtrackon.com/api/live,\
|
||||||
|
http://plugin.xl7.xunlei.com/7.9/normal/trackers.json} > ${TMPFILE}
|
||||||
|
## 对列表排序并去重
|
||||||
|
grep -Po '(udp|https?|wss?):\/\/.+?\/announce(\.php)?' ${TMPFILE} | sort -u -o ${LIST}
|
Loading…
Reference in a new issue