2016 Update

This commit is contained in:
Tina Müller 2016-12-05 22:15:40 +01:00
parent 948b86eafa
commit dcf5d15da3
7965 changed files with 139854 additions and 31002 deletions

View file

@ -1,10 +1,10 @@
/*REXX pgm deletes a file & a folder in the current directory & the root*/
trace off /*suppress REXX error messages. */
aFile= 'input.txt' /*name of a file to be deleted.*/
aDir = 'docs' /*name of a folder to be removed.*/
do j=1 for 2 /*perform this DO loop twice. */
'ERASE' aFile /*erase this file in the cur dir*/
'RMDIR' "/s /q" aDir /*remove the folder " " " " */
if j==1 then 'CD \' /*make current dir the root dir.*/
end /* [↑] just do CD \ once.*/
/*stick a fork in it, we're done.*/
/*REXX program deletes a file and a folder in the current directory and the root. */
trace off /*suppress REXX error messages from DOS*/
aFile= 'input.txt' /*name of a file to be deleted. */
aDir = 'docs' /*name of a folder to be removed. */
do j=1 for 2 /*perform this DO loop exactly twice.*/
'ERASE' aFile /*erase this file in the current dir. */
'RMDIR' "/s /q" aDir /*remove the folder " " " " */
if j==1 then 'CD \' /*make the current dir the root dir.*/
end /* [↑] just do CD \ command once.*/
/*stick a fork in it, we're all done. */