IQKillerv2 / extract_pdf_resume.sh
AvikalpK's picture
πŸš€ Enhanced IQKiller with Next.js Vercel version
0939a57
#!/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 ""