rupa / z

z - jump around
Do What The F*ck You Want To Public License
16.39k stars 1.17k forks source link

z - #142

Closed Yeti-or closed 9 years ago

Yeti-or commented 10 years ago

Hello, how can I alias z - to cd - ? thanks

mafredri commented 9 years ago

How about something like this?

z_cd() {
    if [[ "$1" == "-" ]]; then
        cd -
    else
        z $@
    fi
}

alias z='z_cd'
Yeti-or commented 9 years ago

it's works. :smiley: thank you!