I wrote a loop to unzip all zip files in a directory.
for f in *zip do unzip $f done
However, I have to confirm the overwrite at every step
for f in *zip do echo "yes" | unzip $f done