Merge pull request #16 from LoganDungeon/patch-2

Fixed the extract script
This commit is contained in:
Luke Smith 2017-12-12 16:48:40 -07:00 committed by GitHub
commit 03739fb9d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,12 @@
#!/bin/bash #!/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 if [ -f $1 ] ; then
# NAME=${1%.*} NAME=${1%.*}
# mkdir $NAME && cd $NAME mkdir $NAME && cd $NAME
case $1 in case $1 in
*.tar.bz2) tar xvjf ../$1 ;; *.tar.bz2) tar xvjf ../$1 ;;
*.tar.gz) tar xvzf ../$1 ;; *.tar.gz) tar xvzf ../$1 ;;