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-07 16:39

If using zsh:
function cd () {
        if ! test "$@"; then
                $HOME || return $?
        else
                $@ || return $?
        fi
        if test "$PWD" = "$HOME"; then
                echo 'Welcome home, oniichan!'
        fi
}

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