How would one open TeXShop, say, via command line using ssh and X-forwarding?
Asked
Active
Viewed 4,141 times
3
1 Answers
9
Short answer: you can't. Longer answer: TeXshop is not a X-11 application, it's a native Mac one. As such, it cannot be run remotely over a ssh session. It can be opened locally from the Terminal using
open -a TeXshop
Note also that TeXshop does not read command line parameters: TeXShop command line arguments
Joseph Wright
- 259,911
- 34
- 706
- 1,036
open -a TeXShopin a shell should open the application, but this would not work through asshconnexion. – Corentin Dec 10 '12 at 22:00