一次 untar 多個files

我現在多是用到sites/all/modules 用 wget 更新模組的
wget [url]
因為快, 又免了upload 的麻煩
複製了 drupal.org 內模組的下載url
貼到putty
但untar 不可以用萬用字符 *

find [folder] -iname "*.tar" -exec tar xvfz {} \;

google 大神果然最強!

Google