https://github.com/noqqe/nano-bash
headless, no shit, non-bloated bash config
https://github.com/noqqe/nano-bash
bashrc openbsd osx shell
Last synced: 1 day ago
JSON representation
headless, no shit, non-bloated bash config
- Host: GitHub
- URL: https://github.com/noqqe/nano-bash
- Owner: noqqe
- Created: 2012-08-12T09:24:10.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2018-02-22T09:19:56.000Z (almost 8 years ago)
- Last Synced: 2023-03-11T09:42:34.527Z (almost 3 years ago)
- Topics: bashrc, openbsd, osx, shell
- Language: Shell
- Homepage:
- Size: 90.8 KB
- Stars: 10
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.markdown
Awesome Lists containing this project
README
# nano-bash
nano-bash is my solution to distribute my bashrc to my clients and servers and
be version-control save.
# Warning
nano-bash is suiting _my_ needs. Don't use it without reading everything.
# Installation
Download
$ git clone https://github.com/noqqe/nano-bash $HOME/.nano-bash
copy this to your .bashrc:
NANOBASHCONF="$HOME/.nano-bash/bash.conf"
if [ -r $NANOBASHCONF ]; then
source $NANOBASHCONF
else
echo "WARN: Could not find nano-bash config $NANOBASHCONF"
fi
or (be careful my friend):
rm ~/.bashrc
ln -s ~/.nano-bash/bash.conf ~/.bashrc