|
||
Lesson 7
Objective
|
Changing your system prompt
Use the prompt variable to redefine your system prompt. |
|
|
By default, the C shell uses the percent sign (%) as a prompt.
You can change the default by redefining the C shells prompt variable , using this general form:
% set prompt=value For example, to set your prompt to Hello there %, use this command:
% set prompt="Hello there %"
Hello there %
Note the following:
% set prompt="danielg %" danielg % More complex prompts also can be defined. In the next lesson, storing your custom settings will be discussed. |
||
|
|
||