From 6056b5667ac1e86300562eebbf6bd355cbb6717d Mon Sep 17 00:00:00 2001 From: Veit Heller Date: Wed, 18 Jun 2014 14:10:21 +0200 Subject: [PATCH] Updated extract function in bash_profile --- bash_profile | 1 + 1 file changed, 1 insertion(+) diff --git a/bash_profile b/bash_profile index e1828d4..784b6b8 100644 --- a/bash_profile +++ b/bash_profile @@ -29,6 +29,7 @@ extract(){ case $1 in *.tar.bz2) tar xjf $1 ;; *.tar.gz) tar xzf $1 ;; + *.tar.xz) tar xzf $1 ;; *.bz2) bunzip2 $1 ;; *.rar) rar x $1 ;; *.gz) gunzip $1 ;;