introvoyz041's picture
Migrated from GitHub
a2a15a2 verified
raw
history blame contribute delete
243 Bytes
#!/bin/sh
SOURCE=../Posix/
# Put your DOSEMU folder here
DOSDIR=/Users/stefan/Documents/DOS/B20
files="basic.c basic.h language.h runtime.c runtime.h hardware.h"
for file in $files
do
./dosify $SOURCE/$file > $file
cp $file $DOSDIR
done