【发布时间】:2017-03-22 07:54:48
【问题描述】:
我的朋友们。
我在 Windows CMD 中搜索类似的命令(来自 Linux):
cat list_link.txt | xargs -n1 -P4 [command]
和
[command] $(cat link_list.txt)
提前致谢。
【问题讨论】:
我的朋友们。
我在 Windows CMD 中搜索类似的命令(来自 Linux):
cat list_link.txt | xargs -n1 -P4 [command]
和
[command] $(cat link_list.txt)
提前致谢。
【问题讨论】:
好吧,我找到了类似的命令行 [command] $(cat link_list.txt) 用于 Windows CMD:
for /f "delims=" %i in ('type link_list.txt') do [command] %i
但是cat list_link.txt | xargs -n1 -P4 [command] 似乎更难...
敬礼。
【讨论】: