#!/bin/bash # Content Extractor - Quick extraction script # Usage: ./extract.sh [folder] if [ -z "$1" ]; then echo "Usage: $0 [folder]" echo "" echo "Examples:" echo " $0 https://youtube.com/watch?v=abc123" echo " $0 https://instagram.com/reel/xyz789 Learning" echo " $0 https://medium.com/article Articles" exit 1 fi URL="$1" FOLDER="${2:-Content Extractor}" echo "🔥 Content Extractor" echo "====================" echo "URL: $URL" echo "Folder: $FOLDER" echo "" cd "$(dirname "$0")" python main.py "$URL" --folder "$FOLDER"