-
检测系统上可使用的shell:detect-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 : '/bin/csh' } ,
{ label : 'dash' , path : '/bin/dash' } ,
{ label : 'ksh' , path : '/bin/ksh' } ,