Home

Awesome

CDD

cdd(means cd뒤) is a bash shell command which can help to navigate parent directory easily.

Usage

Setup

 $ source setup.sh
  1. Generate a symbolic link in your $PATH
ln -s $CUR_PATH/cdd.sh $SET_DIR/cdd

$CUR_PATH: this script path where you've cloned.
$SET_DIR: the path where you want to make symlink in.
Note that symlink name shoule be cdd (not cdd.sh)

  1. Append follow lines in your rc file
# for script cdd
source $SET_DIR/cdd
[ -f $CUR_PATH/cdd-completion.bash ] \
        && source $CUR_PATH/cdd-completion.bash

TODO