up vote 3 down vote favorite
share [g+] share [fb]

Liu Chang asked a very similar question to this one here, http://stackoverflow.com/questions/264395/linux-equivalent-of-the-mac-os-x-open-command.

Is there a windows equivalent for the Mac OS X "open" command. I'm trying to run a profiler that will open it's results, but it's looking for the "open" command. Basically, the command needs to open a file from the command prompt as if it were double-clicked on in explorer.

link|improve this question

feedback

4 Answers

up vote 9 down vote accepted

The closest thing available is start.

link|improve this answer
1  
For me "start <filename>" just opens up a new instance of the command prompt. – Thomas Owens Feb 1 '09 at 18:17
3  
@Thomas Owens: That is the default behavior in NT-family Windows (the ones with the CMD.EXE shell). In the Win95 family, START works just as @Charles Duffy mentioned, but on NT you would say 'start "" filename' (note the double quotes to give an empty name to the command window). – Michael Ratanapintha Feb 1 '09 at 18:45
feedback

Just typing the file name into a console window will open the file in Windows. I tried several formats - .doc opened with OpenOffice, .mp3 opened with Windows Media Player, and .txt opened with Wordpad. This is the same behavior I experience when double clicking on the files.

link|improve this answer
feedback

I use to write

explorer.exe <file>
link|improve this answer
feedback

Only explorer.exe appears to work under cygwin.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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