#!/bin/bash printf "Enter Album Name: " read albumname # Create directory for the album mkdir -p "$albumname" # Replace spaces with '+' for search searchname=$(echo "$albumname" | sed 's/ /+/g') # Fetch the search results page search_url="https://pagalnew.com/search.php?find=$searchname" echo "Searching for album: $albumname..." # Extract album URLs and names that belong to the /album/ directory albums=$(curl -s "$search_url" | grep -oiE "/album/[^\" ]+" | uniq) if [ -z "$albums" ]; then echo "No albums found!" exit 1 fi # Use fzf to let the user choose the album interactively chosen_album=$(echo "$albums" | fzf --prompt="Select an album: " --preview="curl -s https://pagalnew.com{} | grep -oP '(?<=