From: Mark Szymanski Date: Sat, 13 Nov 2010 16:21:59 +0000 (-0600) Subject: Changed 'cd's to 'builtin cd's, because I have a modified cd command (cd then ls... X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=7b1312002fccf4053adc5e7c8b53693f72c5f2f3;p=common%2Fbash_it.git Changed 'cd's to 'builtin cd's, because I have a modified cd command (cd then ls) and it can get annoying when using the Jekyll aliases. --- diff --git a/aliases/jekyll.aliases.bash b/aliases/jekyll.aliases.bash index a5078e3..11922d6 100644 --- a/aliases/jekyll.aliases.bash +++ b/aliases/jekyll.aliases.bash @@ -1,27 +1,27 @@ -# Open the root of your site in your vim or cd to it +# Open the root of your site in your vim or builtin cd to it if [[ $EDITOR = "vim" ]] -then alias newentry="cd $JEKYLL_LOCAL_ROOT && $EDITOR ." -else alias newentry="cd $JEKYLL_LOCAL_ROOT" +then alias newentry="builtin cd $JEKYLL_LOCAL_ROOT && $EDITOR ." +else alias newentry="builtin cd $JEKYLL_LOCAL_ROOT" fi # Open the _posts/ directory for making a new blog post (seperate from above alias because not everyone uses jekyll for a blog) # if [ $editor = "vim" ] # then -# alias newpost="cd $jekyll_local_root/_posts && $editor ." +# alias newpost="builtin cd $jekyll_local_root/_posts && $editor ." # else -# alias newpost="cd $jekyll_local_root" +# alias newpost="builtin cd $jekyll_local_root" # fi # Build and locally serve the site -alias testsite="cd $JEKYLL_LOCAL_ROOT && jekyll --server --auto" +alias testsite="builtin cd $JEKYLL_LOCAL_ROOT && jekyll --server --auto" # Build but don't locally serve the site -alias buildsite="cd $JEKYLL_LOCAL_ROOT && rm -rf _site/ && jekyll" +alias buildsite="builtin cd $JEKYLL_LOCAL_ROOT && rm -rf _site/ && jekyll" # Rsync the site to the remote server -alias deploysite="cd $JEKYLL_LOCAL_ROOT && rsync -rz _site/ $JEKYLL_REMOTE_ROOT" +alias deploysite="builtin cd $JEKYLL_LOCAL_ROOT && rsync -rz _site/ $JEKYLL_REMOTE_ROOT" diff --git a/plugins/jekyll.plugins.bash b/plugins/jekyll.plugins.bash index 1933f07..00ac7b0 100644 --- a/plugins/jekyll.plugins.bash +++ b/plugins/jekyll.plugins.bash @@ -1,8 +1,8 @@ newpost() { - # 'cd' into the local jekyll root + # 'builtin cd' into the local jekyll root - cd "$JEKYLL_LOCAL_ROOT/_posts" + builtin cd "$JEKYLL_LOCAL_ROOT/_posts" # Get the date for the new post's filename