1
2if test $? != 0
3then
4  echo
5  echo ERROR: Couldn\'t extract files. 1>&2
6  exit 3
7else
8  echo
9  echo Files extracted successfully.
10fi
11exit 0
12
13