#!/bin/bash
#Simulation code for US foreign policy.
#KNOWN BUGS: Do not attempt to use in the real world which is
#complex and has issues with more than two sides.
source /etc/government/cabinet
function congress() {
LEGALBRIBERY="yes"
sleep 60
}
function senate() {
LEGALBRIBERY="yes"
sleep 60
}
#Previous tests suggest that running with PRESIDENT
#set to "Bush" causes system crashes across the board.
case $PRESIDENT in
"Bush")
for COUNTRY in /usr/share/countries/arab_region ; do
if (($? > 5)) ; then
/etc/init.d/war start $COUNTRY
fi
killall -9 economy
TAXCUTS=(($TAXCUTS++))
;;
"Obama")
killall -9 war
renice -19 economy
TAXCUTS=0
TAXES=(($TAXES++)) //Code seems to break without this
HOPE=(($HOPE++))
;;
esac
-
Aragon


