Week Report 5

Complete the following tasks

1. Notes 3

Notes 3 must include (just as with notes 1 and 2 and with the same format)

  1. The following commands:
    1. mkdir
    2. touch
    3. rm
    4. rmdir
    5. mv
    6. cp
    7. file
    8. pdfinfo
    9. mediainfo
    10. exiv2
    11. exiftool

2. Week report 5

  • Complete all the practice in the managing files and directories presentation. Take a screenshot of your terminal showing most if not all of the commands used in each practice. Make sure to label each screenshot using heading 2 or 3 (just like week report 4)

3. Complete lab 5

4. Work on your final project deliverable 1 or deliverable 2 if you finished deliverable 1

Special Note

You are going to be using the git commands a lot. Here is a quick reference:

  • git clone repository/url/here: is the command to clone a repository where cloning means downloading a repository to your computer
  • git pull: to pull/synchronize your repository from github to your local machine. Always run this command BEFORE you start working VS Code
  • git add .: to track all the changes made to your file.
  • git commit -m "label for your changes here": this command will label all the changes you added with the add command
  • git push: will send all your changes to your github repository

Always run the commands in this order: pull => add => commit => push Never use the github website to make changes to your repository unless you know what you are doing and can remember to pull the changes before working on your local repository!