Skip to content

Instantly share code, notes, and snippets.

@CarlosMecha
CarlosMecha / additional_configuration.sh
Created December 22, 2014 05:11
Add additional configuration to the user's Bash profile
#
# Append those lines to the user's `.bashrc`
#
# If the `.bash.d` folder exists, it would 'source' any `sh` script file.
# Keep your configuration organized :)
#
if [ -d ~/.bash.d ]; then {
for i in ~/.bash.d/*.sh; do {
if [ -r $i ]; then {