This commit is contained in:
2024-10-13 11:06:31 +02:00
parent c975dfbe51
commit c588f5d8b7
2 changed files with 31 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
/** @param {NS} ns */
export async function main(ns) {
const sScript = ns.args[0]; // script
const nThreads = ns.args[1]; // threads
const sArgs = [...arguments];
for (i = 0; ; i++) {
let sHost = "";
ns.exec(sScript, sHost, nThreads);
}
}