- playlists вызывается в download-all - download-all теперь вызывается в начале find-in-all и make-pls - мелочи по скриптам в целом
21 lines
635 B
Bash
Executable File
21 lines
635 B
Bash
Executable File
#!/bin/bash
|
|
#################################################
|
|
#
|
|
# IPTV playlists.ini download tool
|
|
#
|
|
# Usage:
|
|
# ./playlists.sh
|
|
#
|
|
# Remote playlists.ini will be downloaded in this directory
|
|
# More info: https://git.axenov.dev/IPTV/playlists
|
|
#
|
|
# Anthony Axenov (c) 2022
|
|
# The MIT License:
|
|
# https://git.axenov.dev/IPTV/tools/src/branch/master/LICENSE
|
|
#
|
|
#################################################
|
|
|
|
TOOLS_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]:-$0}"; )" &> /dev/null && pwd 2> /dev/null; )";
|
|
INI_FILE="$TOOLS_DIR/playlists.ini"
|
|
wget "https://git.axenov.dev/IPTV/playlists/raw/branch/master/playlists.ini" -O "$INI_FILE"
|