gpt4 book ai didi

linux - 从 TypeScript 运行任何 Linux 终端命令?

转载 作者:太空宇宙 更新时间:2023-11-04 09:14:32 33 4
gpt4 key购买 nike

有没有办法直接从 TypeScript 类中执行 Linux 终端命令?这个想法是做类似的事情:

let myTerminal = new LinuxTerminal();
let terminalResult = myTerminal.run("sudo apt-get update");

编辑:

我使用 Angular 通过 Node JS 运行它。

最佳答案

node.js 中你可以产生一个 child-process

const { exec } = require('child_process');

exec('sudo apt-get update', (err, stdout, stderr) => {
// your callback
});

关于linux - 从 TypeScript 运行任何 Linux 终端命令?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49700941/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com