Skip to content

Commit

Permalink
Update run.yml
Browse files Browse the repository at this point in the history
Update domains_refilter.list
  • Loading branch information
misha-tgshv authored Feb 18, 2025
1 parent 75230ca commit 3f1a19d
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,12 @@ jobs:
- name: Создаем файл domains_refilter.list
run: |
curl -s https://raw.githubusercontent.com/1andrevich/Re-filter-lists/main/community.lst > temp.txt \
&& curl -s https://raw.githubusercontent.com/1andrevich/Re-filter-lists/main/domains_all.lst >> temp.txt \
&& echo "# Дата создания МСК: $(TZ='Europe/Moscow' date '+%Y-%m-%d %H:%M:%S')" > domains_refilter.list \
&& echo "# Количество доменов: $(wc -l < temp.txt)" >> domains_refilter.list \
&& echo "# Источник: https://github.com/1andrevich/Re-filter-lists" >> domains_refilter.list \
&& sed 's/^/DOMAIN-SUFFIX,/g' temp.txt >> domains_refilter.list && rm temp.txt
# curl -s https://raw.githubusercontent.com/1andrevich/Re-filter-lists/main/domains_all.lst > domains1.txt \
# && curl -s https://raw.githubusercontent.com/1andrevich/Re-filter-lists/main/community.lst >> domains1.txt \
# && sed 's/^www\.//; s/^/DOMAIN-SUFFIX,/g; /ww.*ww/d' domains1.txt | sort -u > temp_refilter.list \
Expand All @@ -76,10 +82,10 @@ jobs:
# && sed 's/^/DOMAIN-SUFFIX,/g' temp.txt > processed_temp.txt \
# && split -l 20000 processed_temp.txt domains_refilter_ \
# && for file in domains_refilter_*; do mv "$file" "${file}.list"; done && rm temp.txt processed_temp.txt
curl -s https://raw.githubusercontent.com/1andrevich/Re-filter-lists/main/community.lst > temp.txt \
&& curl -s https://raw.githubusercontent.com/1andrevich/Re-filter-lists/main/domains_all.lst >> temp.txt \
&& sed 's/^/DOMAIN-SUFFIX,/g' temp.txt > domains_refilter.list \
&& rm temp.txt
# curl -s https://raw.githubusercontent.com/1andrevich/Re-filter-lists/main/community.lst > temp.txt \
# && curl -s https://raw.githubusercontent.com/1andrevich/Re-filter-lists/main/domains_all.lst >> temp.txt \
# && sed 's/^/DOMAIN-SUFFIX,/g' temp.txt > domains_refilter.list \
# && rm temp.txt
Expand Down

0 comments on commit 3f1a19d

Please sign in to comment.