我想编写一个脚本或以某种方式计算包含给定字符串的文件数。文件为.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