Hi Jed,
You need, I think, to set PS like this:
[tt]export PS1="\$PWD"[/tt]
The difference is that pwd is uppercased in my example.
The backslash is interesting, they always are actually.
If you try the command without the backslash it seems to work and your prompt is set to your current directory. But if you *change* directory the prompt doesnt change; for that you need the backslash.
In the shell a backslash means "the next character is *not* special". So when $PS1 is evaluated by the shell (each time a prompt is displayed) it evaluates the string '$PWD' which is a variable maintained by the shell to always contain your currrent directory. (without the backslash the evaluation is done only once, when you set $PS1)
Mike
michael.j.lacey@ntlworld.com