>>>> On Mon Aug 6, Norbert writes:
pwd does work, ls also, eg. So, it's not the calling of commands
in
general. If I type 'w' I don't get an answer. Yes, I get the new
prompt, but no information.
Well, pwd and ls are implemented in Lisp. 'w' is an external command,
as would be 'ps'.
It sounds like Eshell is unable to invoke start-process the way it
wants to. I have run into this problem before.
From the Eshell buffer, type this:
M-: (start-process "test" (current-buffer) "/usr/bin/w") RET
See if that generates any output, or if it fails.
John