You can do it with Abiword. This is the command in Linux, which converts all supported files in the directory to RTF:
for i in * ; do abiword --to=rtf $i ; done
Abiword is available also for Windows, but I don't know how the command will look like there.
|