summaryrefslogtreecommitdiffstats
path: root/.config/Scripts/extract
diff options
context:
space:
mode:
authorLuke <luke@lukesmith.xyz>2018-02-20 14:29:53 -0700
committerLuke <luke@lukesmith.xyz>2018-02-20 14:29:53 -0700
commit838eeec9acdc320bbab24b69db3041e436cdc996 (patch)
treee220c4843b25626a9733ee39cb45fcf1dadc1394 /.config/Scripts/extract
parentf1366ff22b4f6f97b27edecda9ecf434c38ae426 (diff)
downloadeibhear-838eeec9acdc320bbab24b69db3041e436cdc996.tar.gz
eibhear-838eeec9acdc320bbab24b69db3041e436cdc996.tar.zst
eibhear-838eeec9acdc320bbab24b69db3041e436cdc996.zip
scripts folder moved to ~/.scripts
Diffstat (limited to '.config/Scripts/extract')
-rwxr-xr-x.config/Scripts/extract30
1 files changed, 0 insertions, 30 deletions
diff --git a/.config/Scripts/extract b/.config/Scripts/extract
deleted file mode 100755
index aaf2911..0000000
--- a/.config/Scripts/extract
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/bash
-# there are two different ways this script can work.
-# for the first way, uncomment the two lines after the if and place two '.' in front of the /$1
-# this creates a new directory in the directory where the compressed file is and dumps the content in it
-# for the second way, comment the two lines under the if and place just one '.' in front of the /$1
-# this just dumps the content of the compressed file in the same directory of the compressed file
-if [ -f $1 ] ; then
- NAME=${1%.*}
- mkdir $NAME && cd $NAME
- case $1 in
- *.tar.bz2) tar xvjf ../$1 ;;
- *.tar.gz) tar xvzf ../$1 ;;
- *.tar.xz) tar xvJf ../$1 ;;
- *.lzma) unlzma ../$1 ;;
- *.bz2) bunzip2 ../$1 ;;
- *.rar) unrar x -ad ../$1 ;;
- *.gz) gunzip ../$1 ;;
- *.tar) tar xvf ../$1 ;;
- *.tbz2) tar xvjf ../$1 ;;
- *.tgz) tar xvzf ../$1 ;;
- *.zip) unzip ../$1 ;;
- *.Z) uncompress ../$1 ;;
- *.7z) 7z x ../$1 ;;
- *.xz) unxz ../$1 ;;
- *.exe) cabextract ../$1 ;;
- *) echo "extract: '$1' - unknown archive method" ;;
- esac
-else
-echo "$1 - file does not exist"
- fi