BASH
36
Script to create files with
Guest on 4th May 2022 08:12:46 AM
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 The fool would teach the learned > Quote001.txt
ECHO The force of anger is broken by a soft answer > Quote002.txt
ECHO The fox may grow gray, but never good > Quote003.txt
ECHO The gods assist the industrious > Quote004.txt
ECHO The gods send nuts to those who have no teeth > Quote005.txt
ECHO The good is the enemy of the best > Quote006.txt
ECHO The greater the fool, the greater his insolence > Quote007.txt
ECHO The half is better than the whole > Quote008.txt
ECHO The hand that rocks the cradle rules the world > Quote009.txt
ECHO The laborer is worthy of his hire > Quote0010.txt
ECHO The labour is in itself a pleasure > Quote0011.txt
ECHO Work Smarter Not Harder > Quote0012.txt
dir *.txt