![]() |
|
|
|
|
|||||||
| OS X (Apple) OS X is a line of Unix-based graphical operating systems developed, marketed, and sold by Apple. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Opening a Unix File in Windows. | a439511 | UNIX for Dummies Questions & Answers | 6 | 03-07-2008 01:13 AM |
| Opening an mp3 with a different application | emperorfabulous | UNIX for Dummies Questions & Answers | 1 | 01-02-2007 11:39 PM |
| Opening an Excel File in Unix | bubeshj | UNIX for Advanced & Expert Users | 5 | 08-03-2006 04:03 PM |
| File Opening in C++ in Unix Env | skannan | High Level Programming | 0 | 06-15-2002 05:10 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
|||
|
How do I choose the application when opening a file in UNIX?
If I have a file in OSX (e.g. a pdf), I can choose how to open it i.e. with the "open with..." command from the 'right click menu'.
Sometimes a pdf is garbled in OSX Preview so I need to open it in Adobe Acrobat. How do I choose the application when opening a file in UNIX? |
| Forum Sponsor | ||
|
|
|
|||
|
the man page for the open command indicates-> open -a applicationname
Depending on which applications, you may need to provide the path to the application's actual executible, but: Code:
open -a "Adobe Acrobat 7.0 Professional.app" /Users/USERNAME/PATH_TO/SOME.pdf (substitute the appropriate information in place of the ALLCAPS words Terminal lets you drag an item from the desktop to the open terminal window to enter it's path. read the man pages for things. their very helpful. in this case-> man open brings up the man page for the open command. |
| Thread Tools | |
| Display Modes | |
|
|