Week Report 8
Complete the following tasks In this order please!!!!
- Complete Notes 8
- Complete Week Report (The practice from the presentation)
- Practice 5
- Practice 6
- Practice 7
- Label each screenshot accordingly using proper markdown heading 2 syntax
- Complete Lab 8 Handling Text Files Part 2
Notes 6
- Explain how to use each of the following commands:
awk
sed
less
- Explain, with examples, how to use:
>
>>
|
For every command, include:
- Definition
- Usage/Formula
- 2-3 examples
What will you submit for your week report:
- Complete the following practices and take a screenshot:
- Practice 5
- Practice 6
- Practice 7
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!