Operating System - HP-UX
1748081 Members
5328 Online
108758 Solutions
New Discussion юеВ

What is the equivalent of "set -x" for csh?

 
SOLVED
Go to solution
dev44
Regular Advisor

What is the equivalent of "set -x" for csh?

We have some users who prefer csh and we are trying to debug something. So does anyone know the equivalent of "set -x"? I tried "set echo = 1" but that didnt' seem to work.

Thanks,
whatever
3 REPLIES 3
James R. Ferguson
Acclaimed Contributor
Solution

Re: What is the equivalent of "set -x" for csh?

Hi:

#!/usr/bin/csh -x

See:

http://docs.hp.com/en/B2355-60130/csh.1.html

Regards!

...JRF...
Robert-Jan Goossens_1
Honored Contributor

Re: What is the equivalent of "set -x" for csh?

Dev44,

Have a look at this thread.

http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1308295

Regards,
Robert-Jan
dev44
Regular Advisor

Re: What is the equivalent of "set -x" for csh?

thanks
whatever