vote up -2 vote down star

My friend typed some command into cmd.exe so that I can write bash synatax in cmd (like ls)

How do I turn it off?

flag
ls is not bash, has nothing whatsoever to do with bash, and you most certainly can't use any bash syntax in cmd.exe because it's not bash. ls is an application in your PATH. – lhunath May 27 at 17:28

closed as not programming related by Rich B, Jon Skeet, bdukes, toolkit, Shog9 May 28 at 18:50

3 Answers

vote up 2 vote down

There's no built-in command like that so you're probably using something like cygwin. Try typing "exit" or "quit" (though that may quit cmd.exe directly). Another option is opening a new command prompt.

If neither of these work, what is the command your friend used, so that we can provide more specific answers.

link|flag
vote up 2 vote down

There are several tools like MSys, MS Services for Unix, Cygwin and UnxUtils that provide a unix-like environment that runs on Windows. If you had one of these systems installed your friend may have activated a shell from within cmd.exe. Try typing ctrl-d or ctrl-z to exit the shell.

Note that many of these systems will let you execute the unix commands straight from a cmd window and that cmd.exe has some piping and redirection capability. Put the bin directory in your path and see how it works. UnxUtils works better than cygwin for this. It is based on msvcrt.dll (rather than the cygwin glibc port) and will understand native Windows paths instead of needing its mapped /cygdrive path.

link|flag
vote up 0 vote down

yes I do use cygwin and thats what he probably did (went from cmd in cygwin/bin and there did something).

exit command works normally but quit is unrecognized

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.