fixed erroneous belief that iar and oar are zips; they are tar format instead.
[feisty_meow.git] / scripts / archival / unpack.sh
1 #!/bin/bash
2
3 ##############
4 # Name   : unpack
5 # Author : Chris Koeritz
6 # Rights : Copyright (C) 2012-$now by Feisty Meow Concerns, Ltd.
7 ##############
8 # This script is free software; you can modify/redistribute it under the terms
9 # of the GNU General Public License. [ http://www.gnu.org/licenses/gpl.html ]
10 # Feel free to send updates to: [ fred@gruntose.com ]
11 ##############
12 #
13 # An arbitrary format archive unpacker, although really we are mainly supporting
14 # tar and zip currently, including compressed formats.
15
16 unpack_file="$1"; shift
17 if [ -z "$unpack_file" ]; then
18   echo "This script takes one archive name (in .tar.gz, .zip, etc. formats) and"
19   echo "unpacks the archive with the appropriate tool."
20   exit 1
21 fi
22 if [ ! -f "$unpack_file" ]; then
23   echo "The file specified for unpacking cannot be located: $unpack_file"
24   exit 1
25 fi
26 unpack_dir="$1"; shift
27 if [ -z "$unpack_dir" ]; then
28   unpack_dir=$(echo unpacked_$(basename $unpack_file) | sed -e 's/^\([^\.]*\)\..*/\1/')
29 fi
30
31 if [ ! -d "$unpack_dir" ]; then
32   mkdir "$unpack_dir"
33   if [ $? -ne 0 ]; then
34     echo "Could not create the unpacking directory: $unpack_dir"
35     exit 1
36   fi
37 fi
38
39 # save where we started out.
40 ORIGINATING_FOLDER="$( \pwd )"
41
42 pushd "$unpack_dir" &>/dev/null
43
44 if [ ! -f "$unpack_file" ]; then
45   # we're assuming we left it behind in our previous directory.
46   unpack_file="$ORIGINATING_FOLDER/$unpack_file"
47   if [ ! -f "$unpack_file" ]; then
48     echo "Could not find file to unpack after shifting directories.  Sorry."
49     echo "Tried to locate it as: $unpack_file"
50     exit 1
51   fi
52 fi
53
54 if [[ $unpack_file =~ .*\.tar$ \
55     || $unpack_file =~ .*\.tar\.gz$ \
56     || $unpack_file =~ .*\.tar\.bz2$ \
57     || $unpack_file =~ .*\.iar$ \
58     || $unpack_file =~ .*\.oar$ \
59     || $unpack_file =~ .*\.tgz$ \
60     ]]; then
61   tar -xf $unpack_file &>/dev/null
62 elif [[ $unpack_file =~ .*\.zip$ \
63     || $unpack_file =~ .*\.odt$ \
64     || $unpack_file =~ .*\.jar$ \
65     || $unpack_file =~ .*\.war$ \
66     ]]; then
67   unzip $unpack_file &>/dev/null
68 fi
69 save_err=$?
70
71 popd &>/dev/null
72
73 if [ $save_err -ne 0 ]; then
74   echo "There was a failure reported while unpacking: $unpack_file"
75   echo "into the directory: $unpack_dir"
76   exit 1
77 else
78   echo "Unpacked file $(basename $unpack_file) into folder: $unpack_dir"
79 fi
80
81