├── LICENSE ├── README.md ├── bash_profile ├── bashrc ├── bashrc.d └── demo.bash ├── inputrc ├── login.d └── empty.sh ├── rc.d └── demo.sh ├── zlogin ├── zshrc └── zshrc.d └── demo.zsh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr4/shellrc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr4/shellrc/HEAD/README.md -------------------------------------------------------------------------------- /bash_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr4/shellrc/HEAD/bash_profile -------------------------------------------------------------------------------- /bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr4/shellrc/HEAD/bashrc -------------------------------------------------------------------------------- /bashrc.d/demo.bash: -------------------------------------------------------------------------------- 1 | echo "This file is executed by bash" 2 | -------------------------------------------------------------------------------- /inputrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr4/shellrc/HEAD/inputrc -------------------------------------------------------------------------------- /login.d/empty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr4/shellrc/HEAD/login.d/empty.sh -------------------------------------------------------------------------------- /rc.d/demo.sh: -------------------------------------------------------------------------------- 1 | echo "This file is executed by all shells" 2 | -------------------------------------------------------------------------------- /zlogin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr4/shellrc/HEAD/zlogin -------------------------------------------------------------------------------- /zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr4/shellrc/HEAD/zshrc -------------------------------------------------------------------------------- /zshrc.d/demo.zsh: -------------------------------------------------------------------------------- 1 | echo "This file is executed by zsh" 2 | --------------------------------------------------------------------------------