Rename a file: Difference between revisions

Content added Content deleted
Line 465: Line 465:
<lang rexx>
<lang rexx>
do 2
do 2
'RENAME' "input.txt" "output.txt"
'RENAME' "input.txt" "output.txt"
'CD' "\"
'CD' "\"
'MOVE' "\docs" "\mydocs"
'MOVE' "\docs" "\mydocs"
end
end
</lang>
</lang>
Line 473: Line 473:
<lang rexx>
<lang rexx>
do 2
do 2
'RENAME' "input.txt output.txt"
'RENAME' "input.txt output.txt"
'CD' "\"
'CD' "\"
'MOVE' "\docs \mydocs"
'MOVE' "\docs \mydocs"
end
end
</lang>
</lang>