This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This script downloads files specified by URIs in an M3U playlist file. | |
# It requires 'wget' to be installed on your system for downloading. | |
# --- Configuration --- | |
# Default output directory if not provided by the user. | |
DEFAULT_OUTPUT_DIR="./downloaded_media" | |
# --- Function to display usage information --- |