mirror of
https://github.com/anthonyaxenov/iptv.git
synced 2024-11-01 09:36:14 +00:00
33 lines
844 B
Bash
Executable File
33 lines
844 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#################################################
|
|
#
|
|
# IPTV Playlist download tool
|
|
#
|
|
# Usage:
|
|
# ./download-all.sh
|
|
#
|
|
# All playlists from playlists.ini will be
|
|
# downloaded in ./downloaded directory
|
|
#
|
|
# Anthony Axenov (c) 2022
|
|
# The MIT License:
|
|
# https://github.com/anthonyaxenov/iptv/blob/master/LICENSE
|
|
#
|
|
#################################################
|
|
|
|
TOOLS_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]:-$0}"; )" &> /dev/null && pwd 2> /dev/null; )";
|
|
DL_DIR="$TOOLS_DIR/downloaded"
|
|
ROOT_DIR="`dirname "$TOOLS_DIR"`"
|
|
INI_FILE="$ROOT_DIR/playlists.ini"
|
|
|
|
rm -rf "$DL_DIR" && \
|
|
mkdir -p "$DL_DIR" && \
|
|
cd "$DL_DIR" && \
|
|
cat "`dirname "$TOOLS_DIR"`/playlists.ini" \
|
|
| grep -P "pls\s*=\s*'(.*)'" \
|
|
| sed "s#^pls\s*=\s*##g" \
|
|
| sed "s#'##g" \
|
|
| tr -d '\r' \
|
|
| xargs wget
|