15 lines
157 B
Bash
Executable file
15 lines
157 B
Bash
Executable file
#!/bin/sh
|
|
|
|
export dir=$(pwd)
|
|
|
|
(cat <<"EOF"
|
|
@echo off
|
|
mount c $dir
|
|
C:\
|
|
cd BIN
|
|
INSTALL.BAT
|
|
exit
|
|
EOF
|
|
) > setup.bat
|
|
(sleep 1; rm setup.bat) &
|
|
dosbox setup.bat &
|