shell / pandoc 将文件夹中的文件批量转换 docx to md
FILES=*.doc*
for f in $FILES
do
# extension="${f##*.}"
filename="${f%.*}"
echo "Converting $f to $filename.md"
`pandoc $f -t md -o $filename.md`
# uncomment this line to delete the source file.
# rm $f
done
find ./ -iname "*.doc*" -type f -exec sh -c 'pandoc "${0}" -o "${0%.doc*}.txt"' {} \;
本博文本意在于记录个人的思考与经验,部分博文采用英语写作,可能影响可读性,请见谅
本文来自博客园,作者:ZXYFrank,转载请注明原文链接:https://www.cnblogs.com/zxyfrank/p/15825608.html