On 1. Mar 2007, at 05:10, Raheel Ahmad wrote:
I am assuming most of us here are familiar with Quicksilver. I wrote a bash script to open a project and some of its files in Textmate in an obvious fashion:
#!/bin/bash mate ~/Documents/infodump mate ~/Documents/infodump/tsks.txt
How can I run this script using Quicksilver? Only way I can is by running this script file using "Run in Terminal." "Run" by itself doesn't do anything with the script file.
Likely because when you just ‘run’ it, it is done by Quicksilver, which does not have the same PATH as the Terminal, and so, there is a chance ‘mate’ is not found.
Try to use the full path to mate in the script.
As an alternative to mate, you can use: open -a TextMate ~/Documents/ infodump