#!/bin/bash
#
# file created by Lorenzo Peņa, who hereby puts it in the Public Domain.
#
# It extracts dosemu and WordPerfect 5.1
# and puts them into directory /tmp/dosemu
# Then it launches dosemu.bin and WordPerpect
###################################################
# Last modified in 20060718 
####################################################
# Disclaimer: use it at your own risk. All warranties are denied
# and rejected. The script is provided `as is' and may cause
# untold suffering and trouble.
#
mv DOSEMU.tar.gz /tmp
cd /tmp
tar --same-owner -xzpf DOSEMU.tar.gz
cd -
mv WP.ZIP /tmp/dosemu/freedos
cd /tmp/dosemu/freedos
unzip WP.ZIP
cd ..
bin/dosemu.bin -cVgKtf dosemurc.simple
