Some heretics asking me hard to make non-kosher formats of documents I am usually writing in *.odt
So I am thinking it will not be so sinfully to make some files in *.doc, when some heretics can not understand how it is fun and rightful to use *.odt files. Ubuntu is humane as we all know and maybe my actions will make them more tolerant and they become new adepts of Ubuntology.
# At first I installed unoconv
sudo aptitude install unoconv
#Then I made nautilus script:
#!/bin/bash
# AUTHOR: (c) Ivan Ivanoff
# VERSION: 1.0
# LICENSE: GPL (http://www.gnu.org/licenses/gpl.html)
# REQUIRES: unoconv
# NAME: odt2doc
# DESCRIPTION: Created 20090731
# Check that the user select files (subdirectories are forbidden)
for File in "$@"
do
if [ -f "$File" ]; then
ext=${File##*.}
if [ "$ext" == "odt" ]; then
unoconv -f doc "$File" 2>&1 | zenity --width=300 --percentage=100 --progress --title "Processing documents" --text "Converting to DOC format\.\.\." --pulsate --auto-close
fi
fi
done
zenity --info --title "Processing documents" --width=300 --text "Done, my Lord\!"
And when I put this in ~/.gnome2/nautilus-scripts/odt2doc.sh I can convert files just opening context menu with RMB.
PROFIT!