【问题标题】:Similar commands in Windows CMD?Windows CMD 中的类似命令?
【发布时间】:2017-03-22 07:54:48
【问题描述】:

我的朋友们。

我在 Windows CMD 中搜索类似的命令(来自 Linux):

cat list_link.txt | xargs -n1 -P4 [command]

[command] $(cat link_list.txt)

提前致谢。

【问题讨论】:

    标签: cat xargs


    【解决方案1】:

    好吧,我找到了类似的命令行 [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] 似乎更难...

    敬礼。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2015-12-27
      • 2018-03-14
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多