1__EOF__
2
3if test $? != 0
4then
5  echo ERROR: Couldn\'t display license file 1>&2
6  exit 1
7fi
8
9echo
10
11echo -n Type \"I ACCEPT\" if you agree to the terms of the license:\
12read typed
13
14if test "$typed" != I\ ACCEPT
15then
16  echo
17  echo You didn\'t accept the license. Extraction aborted.
18  exit 2
19fi
20
21echo
22
23