Re: doc to html from a cmdline?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Mon, Feb 09, 2009 at 12:33:58PM +0000, Sharpe, Sam J wrote:
> Steven W. Orr wrote:
>> I have about 75 doc files. If I bring one up in ooffice, I can save it
>> as a .html file with no problem. Is there a way to do it from the
>> command line? All this clickety is going to take me too long.
> sudo yum install wv
> for filename in `ls *.doc`;
>   do
>       htmlname=`echo $filename | sed -e 's/.doc/.html/g'`
>       /usr/bin/wvHtml $filename $htmlname
>   done;
>
> Depending on what your Word files are, your conversion mileage may differ.

Or, since OpenOffice.org is giving you the results you like, rather
than switching rendering, you could do the following:

1. Make sure that the PyUNO bits for OpenOffice.org are installed.  On
Fedora 10, this is the "openoffice.org-pyuno" package (go figure).

2. Download this helpful script, which I found by googling:
   http://www.artofsolving.com/files/DocumentConverter.py

3. Do a batch conversion:

   for F in *.doc ; do
       H="$(basename "$F" .doc).html"
       python DocumentConverter.py "$F" "$H"
   done

Note my little batch command is very similar to the one above; I just
happen to be using the "basename" command, which I think most distros
include.

-- 
Paul W. Frields                                http://paul.frields.org/
  gpg fingerprint: 3DA6 A0AC 6D58 FEC4 0233  5906 ACDB C937 BD11 3717
  http://redhat.com/   -  -  -  -   http://pfrields.fedorapeople.org/
  irc.freenode.net: stickster @ #fedora-docs, #fedora-devel, #fredlug

Attachment: pgp0Z5RhG6jwn.pgp
Description: PGP signature

-- 
fedora-list mailing list
fedora-list@xxxxxxxxxx
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines
[Index of Archives]     [Older Fedora Users]     [Fedora Announce]     [Fedora Package Announce]     [EPEL Announce]     [Fedora Magazine]     [Fedora News]     [Fedora Summer Coding]     [Fedora Laptop]     [Fedora Cloud]     [Fedora Advisory Board]     [Fedora Education]     [Fedora Security]     [Fedora Scitech]     [Fedora Robotics]     [Fedora Maintainers]     [Fedora Infrastructure]     [Fedora Websites]     [Anaconda Devel]     [Fedora Devel Java]     [Fedora Legacy]     [Fedora Desktop]     [Fedora Fonts]     [ATA RAID]     [Fedora Marketing]     [Fedora Management Tools]     [Fedora Mentors]     [SSH]     [Fedora Package Review]     [Fedora R Devel]     [Fedora PHP Devel]     [Kickstart]     [Fedora Music]     [Fedora Packaging]     [Centos]     [Fedora SELinux]     [Fedora Legal]     [Fedora Kernel]     [Fedora OCaml]     [Coolkey]     [Virtualization Tools]     [ET Management Tools]     [Yum Users]     [Tux]     [Yosemite News]     [Gnome Users]     [KDE Users]     [Fedora Art]     [Fedora Docs]     [Asterisk PBX]     [Fedora Sparc]     [Fedora Universal Network Connector]     [Libvirt Users]     [Fedora ARM]

  Powered by Linux