From f5ed4cd090b321064039441e40fe46a6995abf9a Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Wed, 31 Jul 2013 17:26:30 +1200 Subject: Use standard structure for if/for in shell Mostly for clarity reasons; using this syntax: if [ condition ]; then commands fi As opposed to: if [ condition ] then commands fi Or: [ condition ] && command --- bash/bash_profile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'bash/bash_profile') diff --git a/bash/bash_profile b/bash/bash_profile index aa87667d..3b391209 100644 --- a/bash/bash_profile +++ b/bash/bash_profile @@ -1,6 +1,10 @@ # Source Bourne shell profile if it exists -[[ -r "$HOME/.profile" ]] && source $HOME/.profile +if [[ -r "$HOME/.profile" ]]; then + source $HOME/.profile +fi # Source interactive Bash config if it exists -[[ -r "$HOME/.bashrc" ]] && source $HOME/.bashrc +if [[ -r "$HOME/.bashrc" ]]; then + source $HOME/.bashrc +fi -- cgit v1.2.3