Every command I type in unix the terminal is incrementing numbers for the commands.
Eg : 1> date
2> ls..etc.
What is the reason for this behaviour.
|
Every command I type in unix the terminal is incrementing numbers for the commands.
What is the reason for this behaviour. |
|||
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
This is offtopic, but to give you a short hint: the |
|||
|
|
|
The reason for this is that your terminal is configured to show the linenumber of the current command since being started. The "prompt" is also referred to as "PS1" and you can do all kinds of crazy stuff with it! If you want to read up on how to this have a look here: Reference: http://www.gnu.org/software/bash/manual/bashref.html#Printing-a-Prompt PS1 Generator & Preview: http://www.kirsle.net/wizards/ps1.html Collection of prompts (including pictures): http://jamiedubs.com/ps1-collection-customize-your-bash-prompt |
|||
|
|
$PS1variable. – Lev Levitsky Jan 11 at 11:31