iptv/tools/download-all.sh

32 lines
793 B
Bash
Raw Normal View History

2022-05-29 10:19:09 +00:00
#!/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
#
#################################################
2022-10-22 08:45:58 +00:00
TOOLS_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]:-$0}"; )" &> /dev/null && pwd 2> /dev/null; )";
DL_DIR="$TOOLS_DIR/downloaded"
2022-10-22 14:44:05 +00:00
INI_FILE="$(dirname "$TOOLS_DIR")/playlists.ini"
2022-10-22 08:45:58 +00:00
rm -rf "$DL_DIR" && \
mkdir -p "$DL_DIR" && \
cd "$DL_DIR" && \
2022-10-22 14:44:05 +00:00
cat "$INI_FILE" \
2022-10-22 08:45:58 +00:00
| grep -P "pls\s*=\s*'(.*)'" \
| sed "s#^pls\s*=\s*##g" \
| sed "s#'##g" \
| tr -d '\r' \
| xargs wget