[TxMt] LaTeX Watch

Robin Houston robin.houston at gmail.com
Tue Apr 3 15:35:54 UTC 2007


On 4/3/07, Martin Bialasinski <klingeling at gmail.com> wrote:
>
> open -a Terminal
> osascript <<-APPLESCRIPT
>         tell application "Terminal"
>                 do script "cd \"$DIR\"; latexmk -pvc -pdf -quiet \"$FILE\"
> "
>         end tell
> APPLESCRIPT


That seems unnecessarily roundabout. You could avoid Terminal altogether by
doing:

bash <<BASH &>/dev/null &
    cd "$DIR"
    latexmk -pvc -pdf -quiet "$FILE"
BASH

If you try Latex Watch, you should find it noticeably faster than latexmk,
which
might be a clue that it's not just doing the same thing. :-)

Robin
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macromates.com/textmate/attachments/20070403/fd385ea0/attachment.html>


More information about the textmate mailing list