#!/bin/sh
# send files/URL's to Opera from the console
# doesn't deal with spaces gracefully

OPERA=/usr/bin/opera

if [ ! -x $OPERA ]; then
	echo "Opera binary ($OPERA) not found or not executable."
	exit
fi


for arg in $@; do
	${OPERA} -newpage ${arg} > /dev/null 2>&1 &
done