3 set -o pipefail
# trace ERR through pipes
4 set -o errtrace
# trace ERR through 'time command' and other functions
5 set -o nounset
## set -u : exit the script if you try to use an uninitialised variable
6 set -o errexit
## set -e : exit the script if any statement returns a non-true return value
7 set -o xtrace
# print commands as they are executed
9 cat >> /etc
/apt
/sources.list
<<EOF
10 deb http://download.opensuse.org/repositories/home:/sionescu/Ubuntu/ ./
13 cat >> /etc
/apt
/preferences
<<EOF
16 Pin: origin download.opensuse.org
22 apt-get
-y --force-yes install libfixposix3 libfixposix-dev