build-shell-script

Build shell aliases and functions from Node
Install
npm install --save build-shell-script
Usage
const buildShellScript = require('build-shell-script');
buildShellScript.alias('gi', 'git init');
buildShellScript.fn('gi', 'git init');
buildShellScript.fn('g', [
'git add -A',
'git commit',
'git push'
]);
API
buildShellScript.alias(prefix, suffix)
Arguments
prefix | Left side of shell alias | string | None (required) |
suffix | Right side of shell alias | string | None (required) |
Returns
Type: string
buildShellScript.fn(prefix, suffix)
Arguments
prefix | Left side of shell function | string | None (required) |
suffix | Right side of shell function | string or array | None (required) |
Returns
Type: string
License
MIT © Dawson Botsford