用 sed 替换或删除文件 PDF 上的文本
晚上好,我正在使用 bash 脚本测试用文件 PDF 上的新文本替换文本,我已经解决了从文件 txt 导出到文件 PDF 的文件。但我已经在互联网上下载了 PDF 文件进行测试。我已经使用 pdfgrep 进行了搜索,例如“Roberto Rossi”,并且我已经使用其他名称“Giuseppe Verdi”进行了测试,但不起作用。我哪里错了?我附上剧本。感谢和问候
#!/bin/bash
function press_enter
{
echo ""
echo -n "Premere per continuare"
read
clear
}
selection=
until [ "$selection" = "0" ]; do
echo ""
echo "PROGRAMMA MENU"
echo "1 - Sostituire il testo nel file PDF"
echo "2 - Eliminare il testo nel file PDF"
echo ""
echo "0 - Uscire dal programma"
echo ""
echo -n "Scegliere il numero: "
read selection
echo ""
case $selection in
1 )
echo -n "Inserire il testo da cercare: "
read vecchiotxt
echo -n "Inserire il testo nuovo da sostituire: "
read nuovotxt
pdftk 2010-b4-003.pdf output esportato.pdf uncompress
sed -e "s/$vecchiotxt/$nuovotxt/g" modificato2.pdf
pdftk modificato2.pdf output provaMD2.pdf compress
echo "Sostituito il testo da $vecchiotxt a $nuovotxt" ;
enter ;;
2 )
echo -n "Inserire il testo da cercare: "
read cercatxt
pdftk prova.pdf output esportato.pdf uncompress
sed -e "s/$cercatxt//g" modificato.pdf
pdftk modificato.pdf output provaMD.pdf compress
echo "Eliminati i testi "$cercatxt" nel file PDF" ;
enter ;;
0 ) exit ;;
* ) echo "Please enter 1, 2, or 0"; press_enter
esac
done