Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @echo off
- :: can be curl -k
- :: wget --no-check-certificate -O-
- SET CMD=curl
- SET URL="http://www.torrent.com/rss"
- :: find lines whith title and Added:
- SET FLT1=sed -n "/title/p"
- :: remove <\/*title>
- SET FLT2=sed "s/<\/*title>//g"
- :: remove torrent
- SET FLT3=sed "s/SceneAccess//g"
- :: remove empty lines
- SET FLT4=sed "/^$/d"
- :: MASTER COMMAND
- %CMD% %URL% | %FLT1% | %FLT2% | %FLT3% | %FLT4% > SCCrss.txt
- timeout 1 >NUL
- :: PASS
- FOR /F "delims=" %%G IN (SCCrss.txt) DO (
- START https://kickass.to/usearch/%%G/
- )
Advertisement
Add Comment
Please, Sign In to add comment