1. Assume you are in your home directory, write the command to create directory TEST and the command to change to directory TEST
2. Assume you are in your home directory and you have file yana.py there. Write a command to COPY this file to directory TEST you just created
3. Assume you are in your home directory, write a command to change to directory TEST first, and while you are inside directory TEST, write a command to create a new directory EXAM under directory TEST
4. Assume you are in your home directory, write ONE command to change to directory EXAM
5. Assume you are in your home directory, assume you have a file hello.py there, write ONE command to MOVE this file from home directory to directory EXAM
6. Assume you are in your home directory and you have 3 files: p1.py, p2.py and p3.py. Write a command to COPY ALL 3 files to directory EXAM keeping the same names. Try to write ONE command for this task!
7. Assume you are in your home directory, write a command to REMOVE file yana.py from directory TEST. Try to write ONE command for this task!
8. Assume you are in your home directoy write a command to REMOVE directory EXAM. Try to write ONE command for this task!
9. Assume you are in your home directoy and you have a file yana.py there. Write a command to RENAME the file yana.py to have new name program.py
10. Assume you are in your home directoy and you have a file program.py. Write a command to copy this file in the same directory. The name of the new file should be bony.py