Extract All Files At Once

For extract all files in a directory at once with one command:

for z in *.zip; do unzip "$z"; done