14 lines
387 B
JavaScript
14 lines
387 B
JavaScript
const config = require("./config");
|
|
const utils= require("./utils");
|
|
|
|
for (const key in config.shellCoordinate.Fabulous) {
|
|
let shell = config.startShell(key, config.shellCoordinate.Fabulous[key])
|
|
console.log(shell)
|
|
setInterval(async ()=> {
|
|
console.log(await utils.execShell(shell))
|
|
},1500)
|
|
}
|
|
|
|
// utils.CheckInstallAdb().then(res => {
|
|
// console.log(res)
|
|
// })
|