hi all,
i coded a little download script which might help you batch-downloading several files at once. copy it into the directory where the jar-file resides and just run it by typing ./dl.sh (dont forget to chmod u+x) and then enter your search string.
as a result you get the song list. you can then for example type 1-6,9-13 to download the files 1 to 6 and 9 to 13. single numbers seperated by commas are also possible. hope it helps

Code:
#!/bin/sh
echo Search:
read string
java -jar SciLorsJGroovesharkDownloader.jar /c /l "$string"
echo "Download index (e.g. 1-5 or 2,3,5):"
read number
IFS=","
i=0
array=($number)
len=${#array[*]}
echo $len
unset IFS
echo ${array[0]}
echo ${array[1]}
while [ $i -lt $len ]
do
if `echo ${array[$i]} | grep "-" 1>/dev/null 2>&1`
then
IFS="-"
interval=(${array[$i]})
echo start
start=${interval[0]}
echo $start
echo stop
end=${interval[1]}
echo $end
while [ $start -le $end ]
do
echo $start
java -jar SciLorsJGroovesharkDownloader.jar /c /d "$string" "$start"
start=`expr $start + 1`
done
unset IFS
else
java -jar SciLorsJGroovesharkDownloader.jar /c /d "$string" "${array[$i]}"
fi
i=$[$i+1]
done
have fun, tobi