mate
é na verdade um utilitário que vem com o TextMate. Está localizado em /Applications/TextMate.app/Contents/Resources/mate
. A maneira mais fácil de adicioná-lo ao seu caminho é criar um link simbólico para ele:
ln -s /Applications/TextMate.app/Contents/Resources/mate ~/bin/mate
Em seguida, adicione ~/bin
ao seu caminho adicionando a seguinte linha no seu ~/.profile
:
export PATH=$HOME/bin:$PATH
Mais detalhes podem ser encontrados no Manual do TextMate . Informações como esta:
Mac OS X comes with an open shell command which can be used to simulate a double click from within Terminal. It can also perform an Open With… operation by use of the -a
argument, e.g.: open -a TextMate .
will open the current folder in TextMate (as a scratch project).
This standard command has a few shortcomings: it can only open one file at a time, it cannot open a document at a specific line and it cannot “stall” the shell until the file has been closed, which is useful e.g. when using an editor to write something like a subversion commit message.
For this reason TextMate comes with its own mate shell command, which supersedes the open command. For usage instructions you can run mate -h
(from Terminal).