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 --- sh/profile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'sh/profile') diff --git a/sh/profile b/sh/profile index d5a2fec8..0a1e12a3 100644 --- a/sh/profile +++ b/sh/profile @@ -6,14 +6,14 @@ export VISUAL="$EDITOR" export PAGER='less' # Add ~/.local/bin to PATH -[ -d "$HOME/.local/bin" ] && PATH="$HOME/.local/bin:$PATH" +if [ -d "$HOME/.local/bin" ]; then + PATH="$HOME/.local/bin:$PATH" +fi export PATH # Load any supplementary scripts -if [ -d "$HOME/.profile.d" ] -then - for file in $HOME/.profile.d/* - do +if [ -d "$HOME/.profile.d" ]; then + for file in $HOME/.profile.d/*; do . $file done fi -- cgit v1.2.3