Blogs

untar all files in a directory

Useful command:

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

Syndicate content