包含给定字符串的.docx文件数

时间:2018-08-24 09:01:57

标签: grep

我想编写一个脚本或以某种方式计算包含给定字符串的文件数。文件为.docx格式。我在下面编写了代码,但是无法正常工作。

#!/bin/bash

find . -name "*.doc"| 
while read i; do catdoc "$i" | 
echo -e "DOC"
grep -l "string" * | wc -l; done

find . -name "*.docx"| 
while read i; do docx2txt < "$i" | 
echo -e "DOCX"
grep -l "string" * | wc -l; done

0 个答案:

没有答案