There is not a short way to do this with `unzip`, since it only accepts one zipfile for decompression at a time. Consider some sort of shell loop like:
for d in *.zip
do
dir=/home/usrname/anotherdir/zip${d%%.zip}
unzip -d "$dir" "$d"
done