Results 1 to 4 of 4
I need to trace the actions that are performed by my .cshrc file. Is there a command i can use to get a printout of this?...
- 05-11-2011 #1Just Joined!
- Join Date
- May 2011
- Posts
- 4
.cshrc help tracing
I need to trace the actions that are performed by my .cshrc file. Is there a command i can use to get a printout of this?
- 05-12-2011 #2You can choose your favorite editor (nano, less, emacss, ..) in place for vim.Code:
$ vim ~/.cshrc
- 05-12-2011 #3Just Joined!
- Join Date
- May 2011
- Posts
- 4
thanks, i guess i shouldve been more specific. I needed something that traced the azctions performed and additional files that were sourced. I ended up running this:
script
set echo
source .cshrc
ctrl-d (to exit)
Anybody know of an easier way or more effective way?
- 05-12-2011 #4
Google's your best friend:
HowTo: Debug a Shell Script Under Linux or UNIX
Maybe you're able to apply the bash way to csh?
Good luck!


Reply With Quote