/ Published in: Bash
Single line code untaring all tgz files in current directory. Got it from here: http://lists.pdxlinux.org/pipermail/plug/2005-January/037980.html
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
for i in *.tgz; do tar -xvzf $i; done