Advertisement
Guest User

programme 1

a guest
Oct 15th, 2019
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.44 KB | None | 0 0
  1. @echo off
  2. title BTSA12019
  3. whoami
  4. rem J'avais aucun commentaire à faire, mais une consigne, c'est une consigne.
  5. cd c:\
  6. md temp
  7. cd c:\temp
  8. md IIA
  9. cd IIA
  10. md BTS
  11. cd BTS
  12. md A1
  13. md A2
  14. echo ligne 1 >> test.txt
  15. echo ligne 2 >> test.txt
  16. type test.txt
  17. pause
  18. echo ligne 0 > test.txt
  19. type test.txt
  20. pause
  21. tree c:\temp
  22. pause
  23. del test.txt
  24. rd A2
  25. rd A1
  26. cd c:\temp\IIA
  27. rd BTS
  28. cd c:\temp
  29. rd IIA
  30. cd c:\
  31. rd temp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement