This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
deb-mbse/script/mbsedos

23 lines
419 B
Plaintext
Raw Normal View History

2009-05-15 20:01:56 +00:00
#!/bin/sh
#
# $Id: mbsedos,v 1.3 2004/08/11 11:11:41 mbse Exp $
if [ "`whoami`" != "mbse" ]; then
echo "Only user 'mbse' is allowed"
exit 1
fi
# Save initial umask and set group read/write for dos
UMASK=`umask`
umask 007
# Run DOS
if [ "$TERM" == "linux" ]; then
dosemu.bin -f $MBSE_ROOT/etc/dosemu/dosemu.conf
else
dosemu.bin -X -f $MBSE_ROOT/etc/dosemu/dosemu.conf
fi
# Restore umask
umask $UMASK