#!/bin/bash URLS_FILE="images_urls.txt" # URL file containing the links to download SAVE_DIR="/scratch/23m1521/Vaani/Audio/Hindi/" # Directory where files will be saved mkdir -p "$SAVE_DIR" aria2c --max-concurrent-downloads=48 -i "$URLS_FILE" -d "$SAVE_DIR" --auto-file-renaming=false -c & echo "Download started! Files will be saved to: $SAVE_DIR"