js执行终端命令

tech2024-10-06  17

注意:需要在node环境中才可以用JS执行终端命令

我遇到的问题是在使用electron-vue开发过程中,获取mac电脑中的指定应用的钥匙链,比如获取Google的钥匙链,方法如下:

let abc = require("child_process"); abc.exec( 'security find-generic-password -l "Chrome Safe Storage" -w', function(err, res) {
最新回复(0)