PART3 142 B

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