I am comfortable in Bash but one thing still baffles me...
If I type just \ at a Bash prompt, the new line changes my prompt handle from the normal user@machine:~$ to just the greater than symbol >. This looks like:
Code:
user@machine:~$ \
>
Then hitting enter will keep this strange prompt going.
like that.
If I execute any other normal process it then goes away, reverting back to my normal prompt:
Code:
> ls
(normal output of ls)
user@machine:~$
Question, what is this phenomenon and what is for?