I've thought that mate is virtually the same as 'open -a TextMate.app', but I guess I'm wrong in this.
As when I run the following command, when there's no hello2.txt, I get this error.
open -a TextMate.app hello2.txt The file /Users/smcho/hello2.txt does not exist.
But, it's OK to run mate.
mate hello.txt --> opens the text mate.
What's the difference between the two?
I even tried
open -a TextMate.app --args hello2.txt
But this time, TextMate run with the file name 'Untitled', not 'hello2.txt'.
And this code opens the 'hello3.txt' without any problem.
[NSTask launchedTaskWithLaunchPath:@"/Applications/TextMate.app/Contents/MacOS/TextMate" arguments:[NSArray arrayWithObjects:@"hello3.txt", nil]];
mateis a special executable that comes bundled with TextMate.openis a generic executable that comes with Mac OS. They are completely different. Runman mateandman opento see their differences. – zneak Jul 26 '10 at 4:09non-existing file. So, I guess mate is the binary inside the bundle. But, even though my guess is correct, I don't get it why --args doesn't work with TextMate.app. – prosseek Jul 26 '10 at 4:16which mateto see where themateexecutable actually resides. For the rest, I'm not too sure either, but you should ask superuser for software-related questions rather than stackoverflow. – zneak Jul 26 '10 at 4:25