Untaring tgz files in currenct directory


/ Published in: Bash
Save to your folder(s)

Single line code untaring all tgz files in current directory. Got it from here: http://lists.pdxlinux.org/pipermail/plug/2005-January/037980.html


Copy this code and paste it in your HTML
  1. for i in *.tgz; do tar -xvzf $i; done

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.