Gulp - 执行无尽的进程shell(例如Netstat)

时间:2016-04-11 15:20:20

标签: shell gulp

是否有一些如何让gulp执行一个永远不会像neststat那样停止的shell命令并实时在屏幕上显示结果?我用过这个......

let dist and num be two |V| × |V| arrays of minimum
distances and lengths initialized to ∞ (infinity)

for each vertex v
   dist[v][v] ← 0
   num[v][v] ← 0

for each edge (u,v)
   dist[u][v] ← w(u,v)  // the weight of the edge (u,v)
   num[u][v] ← 1

for k from 1 to |V|
    for i from 1 to |V|
        for j from 1 to |V|
            if dist[i][j] > dist[i][k] + dist[k][j] 
                dist[i][j] ← dist[i][k] + dist[k][j]
                num[i][j] ← num[i][k] + num[k][j]
            end if

这是有效的,netstat执行正常,但我无法在屏幕上看到结果,因为它是永远不会终止的文件类型,因此console.lot(stdout)永远不会被执行。

任何可以解决它的解决方案? ty!

0 个答案:

没有答案