to compile wcd type:

xmkmf
make clean
make depend
make install

--

If this doesn't work try:

make

and then copy file wcd.exe to the right directory.

......................................................................

Korn Shell (ksh):

Add the following function to your $HOME/.kshrc
file.

function wcd
{
   $HOME/bin/wcd.exe $*
   . $HOME/bin/wcd.go
}

Start a new Korn Shell

......................................................................

C Shell (csh):

Add the following alias to your $HOME/.cshrc
file.

alias wcd "$HOME/bin/wcd.exe \!* ; source $HOME/bin/wcd.go"

Start a new C Shell

......................................................................

Bourne Again Shell (bash):

Add the following function to your $HOME/.bashrc
file.

function wcd
{
   $HOME/bin/wcd.exe $*
   source $HOME/bin/wcd.go
}

Start a new bash

......................................................................

Read on in file wcd.txt.
