get-shell-rc

Get the rc file path for any Linux/Unix Shell

Usage no npm install needed!

<script type="module">
  import getShellRc from 'https://cdn.skypack.dev/get-shell-rc';
</script>

README

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