星期三, 3月 30, 2005

快速下載tgz解壓縮

rtar

#!/bin/bash

if [ -z "$1" ]; then
echo "usage: rtar [url/tgz]"
exit 1
fi

wget -O - -q $1 | tar xvz

沒有留言: