5 # Author : Chris Koeritz
6 # Rights : Copyright (C) 2012-$now by Feisty Meow Concerns, Ltd.
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 ]
13 # An arbitrary format archive tester, although really we are mainly supporting
14 # tar and zip currently, including compressed formats.
16 archive_file="$1"; shift
17 if [ -z "$archive_file" ]; then
18 echo "This script takes one archive name (in .tar.gz, .zip, etc. formats) and"
19 echo "tests the archive with the appropriate tool."
22 if [ ! -f "$archive_file" ]; then
23 echo "The file specified cannot be located: $archive_file"
27 # save where we started out.
28 ORIGINATING_FOLDER="$( \pwd )"
30 if [ ! -f "$archive_file" ]; then
31 # we're assuming we left it behind in our previous directory.
32 archive_file="$ORIGINATING_FOLDER/$archive_file"
33 if [ ! -f "$archive_file" ]; then
34 echo "Could not find file to unpack after shifting directories. Sorry."
35 echo "Tried to locate it as: $archive_file"
41 if [[ $archive_file =~ .*\.tar$ \
42 || $archive_file =~ .*\.tar\.gz$ \
43 || $archive_file =~ .*\.tar\.bz2$ \
44 || $archive_file =~ .*\.iar$ \
45 || $archive_file =~ .*\.oar$ \
46 || $archive_file =~ .*\.tgz$ \
47 || $archive_file =~ .*\.ova$ \
48 || $archive_file =~ .*\.snarf$ \
50 tar -tf $archive_file &>/dev/null
52 elif [[ $archive_file =~ .*\.zip$ \
53 || $archive_file =~ .*\.epub$ \
54 || $archive_file =~ .*\.odt$ \
55 || $archive_file =~ .*\.jar$ \
56 || $archive_file =~ .*\.war$ \
58 unzip -t $archive_file &>/dev/null
60 elif [[ "$archive_file" =~ .*\.7z$ ]]; then
61 7z t "$archive_file" &>/dev/null
63 elif [[ "$archive_file" =~ .*\.rar$ ]]; then
64 rar t "$archive_file" &>/dev/null
68 if [ $save_err -ne 0 ]; then
69 echo "** failure while testing: $archive_file"
72 echo "good: $archive_file"