1.0.0 • Published 7 years ago

get-shell-rc v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

get-shell-rc

npm version Build Status XO code style

Get the rc file path for any Linux/Unix Shell

Install

npm install --save get-shell-rc

Usage

const getShellRc = require('get-shell-rc');

// when using bash
getShellRc();
//=> '/users/yourUsername/.bashrc'

// when using zsh
getShellRc();
//=> '/users/yourUsername/.zshrc'

API

getShellRc()

Returns a string with the absolute file path to your respective shell's rc file.

License

MIT © Dawson Botsford