Week Report 6
video here
Complete the following tasks
- Complete notes 6
- Complete Week Report 6
- Complete Lab 6
- Work on your final project
Notes 6
- Explain how to use each of the wildcards (
*
,?
, and[]
) - Explain how to use brace expansion (
{}
) - Include at least 3 examples of each
- There is an article in the website that can help you here.
- I suggest that you copy the table that explains each wildcard and has an example. It will be useful in your final exam.
What will you submit for your week report:
- Complete every practice in the wildcards 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 5)
- Convert the file to pdf
- Push everything to Github
- In Blackboard, submit the pdf file for week report 6 and the Github url of the
wr6.md
file
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 computergit pull
: to pull/synchronize your repository from github to your local machine. Always run this command BEFORE you start working VS Codegit 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 theadd
commandgit 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!