From 2f6c7606241acdf800a2c079b359e7a1db360954 Mon Sep 17 00:00:00 2001 From: Tess Chu Date: Tue, 20 Nov 2007 02:53:43 +0000 Subject: svn merge -r 73926:74098 svn+ssh://svn/svn/linden/branches/viewer-auth-7 --- indra/newview/linux_tools/handle_secondlifeprotocol.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 indra/newview/linux_tools/handle_secondlifeprotocol.sh (limited to 'indra/newview/linux_tools/handle_secondlifeprotocol.sh') diff --git a/indra/newview/linux_tools/handle_secondlifeprotocol.sh b/indra/newview/linux_tools/handle_secondlifeprotocol.sh new file mode 100755 index 0000000000..7ff86d1b93 --- /dev/null +++ b/indra/newview/linux_tools/handle_secondlifeprotocol.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +# Send a URL of the form secondlife://... to Second Life. +# + +URL="$1" + +if [ -z "$URL" ]; then + echo Usage: $0 secondlife://... + exit +fi + +RUN_PATH=`dirname "$0" || echo .` +cd "${RUN_PATH}" + +exec ./secondlife -url \'"${URL}"\' + -- cgit v1.2.3