我可以通过这段代码在html2text上使用parallel
find . -type f -name \*html > FLIST
parallel --a FLIST -j 1000 'html2text {} > {.}.txt'
现在,如何在转换每个
.html
输入文件后删除它。 最佳答案
这样可以:
find . -type f -name \*html > FLIST
parallel --a FLIST -j 1000 'html2text {} > {.}.txt; rm {}'
关于python - 删除输入时使用并行运行html2text,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51219201/