Add docx-to-pdf.sh (convert and update contents file)

This commit is contained in:
Santiago Lo Coco 2023-07-23 14:45:03 +02:00
parent f732fdea7f
commit 85d3c5ed42
1 changed files with 11 additions and 0 deletions

11
docx-to-pdf.sh Normal file
View File

@ -0,0 +1,11 @@
#!/bin/sh
initialPath=$(pwd)
find . -type f -name '*.doc*' | sed -r 's|/[^/]+$||' | sort -u | while read dir; do
cd "$dir"
find . -type f -name '*.doc*' | while read file; do
soffice --headless --convert-to pdf "$file"
echo "$file" | sed -e 's|^\./||' | sed 's/docx?/pdf/' | tee -a contents
done
cd "$initialPath"
done