#!/bin/bash echo "📄 PDF Resume Text Extractor for IQKiller" echo "==========================================" echo "" echo "This tool extracts text from your PDF resume so you can copy-paste it into IQKiller." echo "" # Check if PDF file is provided as argument if [ "$1" != "" ]; then echo "🔍 Processing: $1" python3 pdf_upload_tool.py "$1" else echo "📁 Drag and drop your PDF file here, or provide the path:" echo "" echo "Usage:" echo " ./extract_pdf_resume.sh /path/to/your/resume.pdf" echo "" echo "Or run the interactive version:" python3 pdf_upload_tool.py fi echo "" echo "💡 Copy the extracted text above and paste it into IQKiller at:" echo " http://localhost:7860" echo ""