![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Undefined symbol: .log | ravindra_maddal | AIX | 0 | 05-15-2008 04:30 AM |
| use of \&\& symbol | suryahota | Shell Programming and Scripting | 2 | 10-04-2007 04:15 AM |
| Append with TM symbol | ganesh123 | Shell Programming and Scripting | 1 | 03-20-2007 11:41 AM |
| no symbol table | Dom_Cyrus | High Level Programming | 2 | 01-31-2006 05:15 AM |
| unresolved symbol ??? | svennie | UNIX for Dummies Questions & Answers | 2 | 10-08-2004 03:21 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
|||
|
The > symbol
Hi guys,
Im new to unix; I have a problem at hand. Somehow at the terminal, I lost the command prompt, instead I get a ">" symbol. Anything I type in does me no good. What do you recommend? Thank you for your help. |
| Forum Sponsor | ||
|
|
|
|||
|
The > is the default UNIX secondary prompt (held in the $PS2 environment variable, so you can change it for the current logon session with PS2="anythingyoulike ") and shows that the last command line was incomplete, often because of unclosed quotes
e.g. Code:
$ print "hello > world" $ Code:
$ for a in x y > do > print $a > done x y $ cheers |