删除输入时使用并行运行html2text

时间:2018-07-07 01:22:19

标签: python html linux terminal parallel-processing

我可以通过此代码在html2text上并行使用

find . -type f -name \*html > FLIST
parallel --a FLIST -j 1000 'html2text {} > {.}.txt'

现在,一旦每个.html输入文件转换后,如何删除。

1 个答案:

答案 0 :(得分:0)

这可以做到:

find . -type f -name \*html > FLIST
parallel --a FLIST -j 1000 'html2text {} > {.}.txt; rm {}'