vote up 5 vote down star
3

Hello,

is there an equivalent to OSX open command in cygwin. open opens a file with the default application for that type.

I want to do something like

$ magic-command file.xls
#excel opens as if file.xls would have been double-clicked

$ magic-command file.txt
#notepad opens as if file.xls would have been double-clicked

You get the idea?

Basically something like a "cygwin-double-click"

flag

3 Answers

vote up 9 vote down check

You can also use the cygwin utility:

cygstart <your file>

To make things OSX-like add the following to your bashrc

alias open='cygstart'

Don't forget to check out the man page for cygstart.

link|flag
This is really handy! With cygstart you can also run the Edit, Print, etc. actions on files... I'm glad you posted this – f3lix Feb 23 at 13:59
This one appears "cleaner" - therefore I accepted it – Mo Feb 23 at 14:04
vote up 1 vote down

Under the Windows command-line interpreter (cmd.exe) there is support for the start command. I know of somebody who implemented start in cygwin. You can find the page about it here.

You could also simply call cmd.exe (usually located in /cygdrive/c/windows/system32/cmd.exe) with the following arguments cmd /c "start yourfile.file"

link|flag
vote up 3 vote down

You can use the start command from the CMD like this:

 cmd /c start <your file>
link|flag

Your Answer

Get an OpenID
or

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