pdf-extract
从 PDF 文件中提取文本以进行 LLM 处理
安装 / 下载方式
TotalClaw CLI推荐
totalclaw install totalclaw:totalclaw~pdf-extractcURL直接下载,无需登录
curl -fsSL https://skills.taituai.com/api/skills/totalclaw%3Atotalclaw~pdf-extract/file -o pdf-extract.md## 概述(中文) 从 PDF 文件中提取文本以进行 LLM 处理 ## 原文 # PDF Extract Extract text from PDF files for LLM processing. Uses `pdftotext` from the poppler-utils package to convert PDF documents into plain text. ## Commands ```bash # Extract all text from a PDF pdf-extract "document.pdf" # Extract text from specific pages pdf-extract "document.pdf" --pages 1-5 ``` ## Install ```bash sudo dnf install poppler-utils ```