Skip to content

Commit

Permalink
Update run.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
misha-tgshv authored Feb 18, 2025
1 parent 3eaa2ec commit b793bf5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,10 @@ jobs:
# && rm domains1.txt temp_refilter.list
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 | split -l 1000 domains_file_ \
&& for file in domains_file_*; do mv "$file" "${file}.list"; done && rm temp.txt
&& sed 's/^/DOMAIN-SUFFIX,/g' temp.txt > processed_temp.txt \
&& split -l 1000 processed_temp.txt domains_file_ \
&& for file in domains_file_*; do mv "$file" "${file}.list"; done && rm temp.txt processed_temp.txt
Expand Down

0 comments on commit b793bf5

Please sign in to comment.