LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   How to close terminal? (https://www.linuxquestions.org/questions/linux-newbie-8/how-to-close-terminal-4175555560/)

jaydul 10-07-2015 02:51 PM

How to close terminal?
 
what I had mistake my command.How to close I had try
q
q!
wq

find /home/ -name :WP"

how to close terminal...

[tuhin@tuhin Downloads]$ find /home/ -name :WP"
>
>
>
> Q
> q
>
>
>

frieza 10-07-2015 02:57 PM

well, for your situation it would be ^C (CTRL-C)

your problem is this line

Code:

[tuhin@tuhin Downloads]$ find /home/ -name :WP"
you have mismatched quotes,
either you need to change it to


Code:

[tuhin@tuhin Downloads]$ find /home/ -name ":WP"
or


Code:

[tuhin@tuhin Downloads]$ find /home/ -name :WP\"
depending on whether you want the :WP to be enclosed in quotes, or the quote is meant as a literal quote

or just type in another quote and hit enter... you won't get the resulte you want though


All times are GMT -5. The time now is 11:40 AM.