set prompt

try man 1 tcsh :)

As for your prompt, that should be something like:
Code:
set prompt='[%n]@[%m]:[%~]%# '
 
Here's mine:

Code:
set prompt = "%n@%m:%~%#"

As noted the tcsh(1) man page contains the info you need to customize it further.
 
Mine is:
Code:
set prompt = "%{\033]0;%M:%n:%~%L\007%}%M:%n:%~%# "

sets xterm/screen (with correct terminfo entries in .screenrc) title as well
 
Back
Top