detect shell:检测系统上可用的shell 源码
检测壳 检测系统上可用的 (基于vscode的) 安装 $ npm install --save detect-shell 用法 const { detectAvailableShells } = require ( 'detect-shell' ) ; detectAvailableShells ( ) . then ( ( shells ) => { console . log ( shells ) ; } ) ; // output [ { label : 'bash' , path : '/bin/bash' } , { label : 'csh' , path : '/b
用户评论