Tar Question
Hi,Can anyone tell me how to untar multiple files at once?
Lets say I have file1.tar.gz, file2.tar.gz and file3.tar.gz inside /backup. How would I untar them all without having to specify them one by one?
I tried using a wildcard such as:
tar -zxpf *.tar.gz but it didn't work.
Thanks!

