mirror of
https://github.com/anthonyaxenov/iptv.git
synced 2024-11-01 01:26:00 +00:00
5 lines
131 B
Bash
5 lines
131 B
Bash
|
#!/bin/bash
|
||
|
mkdir files
|
||
|
cd files
|
||
|
grep -P "pls='(.*)'" ../playlists.ini | sed "s/^pls=//g" | sed "s/'//g" | tr -d '\r' | xargs wget
|