Imported existing code
This commit is contained in:
17
indra/newview/linux_tools/handle_secondlifeprotocol.sh
Executable file
17
indra/newview/linux_tools/handle_secondlifeprotocol.sh
Executable file
@@ -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 ./snowglobe -url \'"${URL}"\'
|
||||
|
||||
Reference in New Issue
Block a user