Loading...
 

Useful tips

Process in batch in command line

How to convert M$ Office Presentations (read-only) to pdf through the command line
1
 
1
for f in *.ppsx; do unoconv -f pdf "${f/%pdf/ppsx}"; done

 

A Nautilus Script

This very simple and lightweight Nautilus Script uses -+unoconv+- to convert selected file(s) compatible with LibreOffice to PDF format:

Nautilus Script to convert selected LibreOffice-compatible file/s to PDF
10
 
1
#!/bin/sh
2
#Nautilus Script to convert selected LibreOffice-compatible file(s) to PDF
3
#
4
OLDIFS=$IFS
5
IFS="
6
"
7
for filename in $@; do
8
unoconv --doctype=document --format=pdf "$filename"
9
done
10
IFS=$OLDIFS
Image Seed: noun \ˈsēd\ : the beginning of something which continues to develop or grow

Knowledge seeds

Switch Language