Untar all files in a directory

for a in `ls -1 *.tar.gz`; do tar -zxvf $a; done

those are backticks.
thanks to linuxquestions.org forums.