summaryrefslogtreecommitdiffstats
path: root/.scripts
diff options
context:
space:
mode:
Diffstat (limited to '.scripts')
-rwxr-xr-x.scripts/extract7
1 files changed, 2 insertions, 5 deletions
diff --git a/.scripts/extract b/.scripts/extract
index 40f4d66..c214583 100755
--- a/.scripts/extract
+++ b/.scripts/extract
@@ -22,16 +22,13 @@ fi
if [ -f "$archive" ] ; then
case "$archive" in
- *.tar.bz2) tar xvjf "$archive" ;;
- *.tar.gz) tar xvzf "$archive" ;;
- *.tar.xz) tar xvJf "$archive" ;;
+ *.tar.bz2|*.tar.xz|*.tbz2) tar xvjf "$archive" ;;
+ *.tar.gz|*.tgz) tar xvzf "$archive" ;;
*.lzma) unlzma "$archive" ;;
*.bz2) bunzip2 "$archive" ;;
*.rar) unrar x -ad "$archive" ;;
*.gz) gunzip "$archive" ;;
*.tar) tar xvf "$archive" ;;
- *.tbz2) tar xvjf "$archive" ;;
- *.tgz) tar xvzf "$archive" ;;
*.zip) unzip "$archive" ;;
*.Z) uncompress "$archive" ;;
*.7z) 7z x "$archive" ;;