get-shell-rc
v1.0.0
Published
Get the rc file path for any Linux/Unix Shell
Downloads
3
Maintainers
Readme
get-shell-rc
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