summaryrefslogtreecommitdiff
path: root/etc/functions
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2009-02-16 13:07:28 +0100
committerDaniel Friesel <derf@derf.homelinux.org>2009-02-16 13:07:28 +0100
commit5c015acd38faf4c992da264df039aeb074c93802 (patch)
treee04bc62b735d3dfc25d344224891c38a4404c1a3 /etc/functions
parent76d167649a30d9d4369e69b96a1499b7a570ffe3 (diff)
extr: Fixed .tgz handling
Diffstat (limited to 'etc/functions')
-rwxr-xr-xetc/functions/extr2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/functions/extr b/etc/functions/extr
index 444b237..eee5ad2 100755
--- a/etc/functions/extr
+++ b/etc/functions/extr
@@ -17,7 +17,7 @@ if [[ -f $1 ]] {
*.lzh) lha x $1 ;;
*.gz) gunzip -d $1 ;;
*.tar) tar xvf $1 ;;
- *.tgz) xvzf $1 ;;
+ *.tgz) tar xvzf $1 ;;
*.tbz2) tar xvjf $1 ;;
*.zip) unzip $1 ;;
*.Z) uncompress $1 ;;