Coming from Mac OS X, you can type:
open yourfilehere.txt
and your file will open just as if you had opened it from Finder.
On Windows, I'd like to be able to open files in the same manner. What's the command?
|
Coming from Mac OS X, you can type:
and your file will open just as if you had opened it from Finder. On Windows, I'd like to be able to open files in the same manner. What's the command?
| |||
|
feedback
|
|
Just drop the 'open' and you're set. Enter the filename and it will open with the appropriate program. You'll need to consider the path to the file, so executing the above would only work if the file is within the current directory. | |||
|
feedback
|
|
While just typing the name is shorter, the start command jweede points out is better if you want to open a directory in Explorer instead (like open directoryName opens a folder in finder on OSX). I use " However, you don't need the extra syntax he showed. Just | |||||||||
feedback
|
|
A few more options to consider.
| |||
|
feedback
|
|
% rundll32 url.dll,FileProtocolHandler xyz.bar why not use "start /c" as mentioned above? because if the xyz.bar is missing the executable flag, you will get something like "access denied". this is also true for one of the answers to 'just drop the "open" term and the shell will handle the rest' and as i learned right now, 'cygstart' does an excellent job on cygwin as well (see http://superuser.com/questions/38984) | ||||
feedback
|
|
In addition to the easy way that Luke pointed out, there's also the
but watch out, if your filename has spaces in it, you'll need to do this:
| ||||
|
feedback
|