#!/bin/csh -f # Open the specified files in the OpenOffice.org app. # -n = New instance of the app, even if another instance is already open. # -a = Application to open # :q = Quote each incoming arg in case it contains embedded spaces and such. #open -n -a '/Applications/OpenOffice.org.app' $*:q open -n -a '/Applications/LibreOffice.app' $*:q