#!/bin/bash
ls | grep tar | (while read file;
                 do
                   tar zxvf $file
                 done
                )