An open API service indexing awesome lists of open source software.

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

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