用于区分docx的git配置文件

时间:2013-09-23 09:55:42

标签: git bash

我希望能够区分docx文件并发现使用以下代码我们能够从docx文件中提取文本。 unzip -p some.docx word/document.xml | sed -e 's/<[^>]\{1,\}>//g; s/[^[:print:]]\{1,\}//g' | fold -w 80

但是,我很难将其包含在gitattribute文件中。 有人可以评论如何修改此行,以便git使用当前文件而不是docx文件的硬链接

我在git config中尝试过以下操作,但它会导致错误:

[diff "word"] textconv= unzip -p $LOCAL | sed -e 's/<[^>]\{1,\}>//g; s/[^[:print:]]\{1,\}//g' |

1 个答案:

答案 0 :(得分:1)

Here's a proper solution为此,只需剥离字符串,这可能会让您感到头疼。