Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Shellscripting question

Name: Anonymous 2012-02-07 10:24

How could I make a shellscript which will echo "Welcome home, oniichan!" whenever I cd to my home directory?

Name: Anonymous 2012-02-08 7:28

>>13
bash version:
cd () {
    if ! test "$@"; then
        pushd $HOME > /dev/null || return $?
    else
        pushd $@ > /dev/null || return $?
    fi 
    if test "$PWD" = "$HOME"; then
        echo 'Welcome home!'
    fi 
}

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List