我的朋友。
我在Windows CMD中搜索类似的命令(来自Linux):
cat list_link.txt | xargs -n1 -P4 [command]
和
[command] $(cat link_list.txt)
提前致谢。
答案 0 :(得分:0)
好吧,我为Windows CMD找到了类似的命令行[command] $(cat link_list.txt)
:
for /f "delims=" %i in ('type link_list.txt') do [command] %i
但cat list_link.txt | xargs -n1 -P4 [command]
似乎更难......
敬礼。