Convert Word doc or docx files into text files?

前端 未结 11 505
难免孤独
难免孤独 2020-12-05 01:28

I need a way to convert .doc or .docx extensions to .txt without installing anything. I also don\'t want to have to manually open Wor

11条回答
  •  一向
    一向 (楼主)
    2020-12-05 01:54

    I need a way to convert .doc or .docx extensions to .txt without installing anything

    for I in *.doc?; do mv $I `echo $ | sed 's/\.docx?/\.txt'`; done
    

    Just joking.

    You could use antiword for the older versions of Word documents, and try to parse the xml of the new ones.

提交回复
热议问题