dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

commit 76f9001b28bcaad17c8d6c606193bb2a45015c40
parent 68f8f8b04d0963551f71963e321fce6e082c327f
Author: Chris Bracken <chris@bracken.jp>
Date:   Tue,  4 Nov 2014 20:05:51 -0800

Replace backticks with $() command substitution

Diffstat:
M.paths | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.paths b/.paths @@ -3,7 +3,7 @@ # add to path if not already there path_remove() { - PATH=`echo $PATH | sed "s:$1::;s/::/:/;s/:$//"` + PATH=$(echo $PATH | sed "s:$1::;s/::/:/;s/:$//") } path_prepend() {