In the mac os x terminal, if you type in:
i'm
you get a line with a less than sign, looks like a primitive instant messenger, It's probably not, does anyone know what it is?
|
feedback
|
|
What is happening is that the For example, with the echo command, which merely repeats any parameters it is given to standard output:
| |||
|
feedback
|
|
It's a continuation of the command you're entering, which can't be executed as-is because it's clearly incomplete as it has an unmatched single quote. | |||
|
feedback
|
|
This means that you've started to quote something (with the opening apostrophe), so the shell doesn't execute it until you close the quote. So when you enter another apostrophe and hit return you'll pass the whole thing to the shell with the new line characters contained in the quoted string. | |||
|
feedback
|