My prompt is currently displayed like here:
[Aug-27 14:36] /x/y/z/w/u/v/dir1/dir2/dir3>
What I would like to do is replace the constant partial-path of the current working directory
/x/y/z/w/u/v
with
$WORK
so eventually what will be displayed is
[Aug-27 14:36] $WORK/dir1/dir2/dir3>
/x/y/z/w/t/u
is always the same path from which I usually do my work and for which I have a local variable $WORK
set (very similar to the home ~
idea).
A straight-forward solution will be most-welcomed as I really don't know much about setting a shell.
Just put those lines into
~/.tcshrc
:precmd
is a command, which is run before a prompt is shown to you. You can use it to customize your prompt using other commands available on your system.When it comes to colors, you can add them using those special color sequences like
\e[36m
(more details here). In the my example I turned on non-bold cyan for the whole prompt by prependingprintf "%b" "\e[36m";
to the definition ofprecmd
. You add your own colors this way, just put that a similarprintf
command somewhere in there. I turned off colors (bringing back the default text color of the terminal) by appending%{\e[0;0m%}
to the prompt, end of which happens to be set by theprompt
variable. I'm using%{...%}
because this is how you change colors inside when setting theprompt
variable. So basically you should useprintf "%b" "...";
for theprecmd
alias and%{...%}
for theprompt
variable.I used those for reference:
Tested on Ubuntu 17.04 with
tcsh --version
returiningtcsh 6.20.00 (Astron) 2016-11-24 (x86_64-unknown-linux) options wide,nls,dl,al,kan,sm,rh,nd,color,filec
.