Thanks Ian, I figured it out.

Also, thank you Rob, I was able to write a script that grabbed the
selections directly from finder instead of sending it to quicksilver
using the diffmerge script. I think I can use opendiff
interchangeably.

in case anyone is interested, here is my script using the diffmerge
shell script
on run
        tell application "Finder"
                copy selection to theSelected
                set outputPathList to ""
                repeat with anItem in theSelected
                        set outputPathList to outputPathList & space & (POSIX 
path of
(anItem as alias))
                end repeat
                set AppleScript's text item delimiters to return
                set AppleScript's text item delimiters to ""
        end tell
        do shell script "{path}/diffmerge.sh " & outputPathList & " > /dev/
null 2>&1 &"
end run

On Oct 6, 2:38 am, Rob McBroom <[email protected]> wrote:
> On Oct 4, 2011, at 11:05 PM, yoose wrote:
>
> > DiffMerge has a command line interface and provides a shell script wrapper.
>
> You can also use the `opendiff` command if you want them to open in FileMerge.
>
> --
> Rob McBroom
> <http://www.skurfer.com/>

Reply via email to