shell-prompt
v0.1.3
Published
Get the PS1 or prompt variable based on your shell type
Downloads
7
Readme
shell-prompt
Get the PS1 or prompt variable based on your shell type
Installation
This module is installed via npm:
$ npm install shell-prompt
Example Usage
Asynchronous version
var prompt = require('shell-prompt');
prompt(function (err, ps1) {
// ps1 will be the PS1 variable for bash,sh,zsh
// or the 'prompt' variable for csh,tcsh
// or default to '$ ' if not set
});
Synchronous version
var prompt = require('shell-prompt');
var ps1 = prompt.sync();
// ps1 will be the PS1 variable for bash,sh,zsh
// or the 'prompt' variable for csh,tcsh
// or default to '$ ' if not set
});