REM Script to create files with Sample Text for Parallel Operating Systems REM @ECHO OFF SET drive=E: @ECHO Create files with sample text for %username% on %drive% IF exist %drive%\%username% RMDIR %drive%\%username% /s /q %drive% CD \ MD %drive%\%username% CD %drive%\%username% ECHO Bill Abbott 123 Rainbow Drive Dallas, Texas > Pgm1Data.txt ECHO Sue Jones 4822 Sunset Houston, Texas >> Pgm1Data.txt ECHO Walter Smith 10242 Lincoln Place Chicago, Illinois >> Pgm1Data.txt DIR *.txt