Compare commits
2 Commits
3797119bb5
...
5310ac5f2f
Author | SHA1 | Date |
---|---|---|
Luca Lombardo | 5310ac5f2f | 10 months ago |
Luca Lombardo | 2731ce32d3 | 10 months ago |
@ -0,0 +1,20 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Create the pdf folder if it doesn't exist
|
||||||
|
mkdir -p pdf
|
||||||
|
|
||||||
|
# Iterate through all .pptx files in the current folder
|
||||||
|
for file in *.pptx; do
|
||||||
|
if [ -f "$file" ]; then
|
||||||
|
# Extract the base name (without extension) of the file
|
||||||
|
base_name=$(basename "$file" .pptx)
|
||||||
|
|
||||||
|
# Convert the .pptx file to .pdf and save it in the pdf folder
|
||||||
|
libreoffice --headless --convert-to pdf --outdir pdf "$file"
|
||||||
|
|
||||||
|
echo "Converted $file to pdf/$base_name.pdf"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
echo "Conversion complete!"
|
||||||
|
|
Loading…
Reference in New Issue