Skip to content
33 changes: 17 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@

1. Fork a copy of this repository to _your_ GitHub account.
2. Clone the _forked_ copy to your computer.
3. Add an `index.html` file to the root directory of the repository.
4. Open the repository in VS Code.
5. Add the following code to your `index.html` file
3. Add an `index.html` file to the root directory of the project.
4. Open the index.html file in the nano text editor.
5. Add the following code to your `index.html` file.

````
<!DOCTYPE html>
Expand All @@ -30,35 +30,36 @@
6. Add the changes to the staging area.
7. Save the the changes to your local repository. Include as your message the full command you used to create the index.html file in step 3.
8. Send the changes to your remote repository.
9. Create a pull request
9. Create a pull request from your repository's main branch to this repository's main branch.

## Part Two: Command Line

### Please follow the directions the below. You will be assessed on the completion of each step.

### Setup:
1. You will need to create a replit.com account to complete this portion. This video provides directions: https://www.youtube.com/watch?v=ZAC0TQEU5gI
2. Start a new "Bash" repl
2. Open up our <a href="https://replit.com/team/jfs-5">replit teams page</a> and navigate to the Command Line and Git SBA project
3. Click on the "Console" tab to run commands in a way similar to Git Bash or Terminal
4. Format your commands with single spaces between commands, options, and arguments. Ex. `cp file1.txt file2.txt my_directory` `ls -a`
4. Format your commands with single spaces between commands, options, and arguments. For example, `cp file1.txt file2.txt my_directory` `ls -a`
5. You MUST use command line commands to complete all steps otherwise we will not be able to give you credit for all steps.
PLEASE NOTE: There is a button that says "run" at the top of the page. <strong>DO NOT</strong> press this button as it will clear your commands from your command history!

### Use the appropriate commands complete the steps listed below.

1. Create a folder named `folder1`
2. Navigate to `folder1`
3. Add a file named `file1.txt` to `folder1`
4. Use text commands to add the following text to `file1.txt`: `"grapes\napples\noranges\nlimes\nlemons\napples\ngrapes\npears\nberries\nlimes"` There should be one item per line in the file. Hint: You will need to use -e along with your command to ensure each item is on separate line (ex. `command -e "text here"`)
5. Alphabetize the contents of `file1.txt` and add the alphabetized content to a new file named `sorted-file1.txt`
4. Use text commands to add the following text to `file1.txt`: `"grapes\napples\noranges\nlimes\nlemons\napples\ngrapes\npears\nberries\nlimes"` <strong>There should be one item per line in the file</strong>. Hint: You will need to use -e along with your command to ensure each item is on separate line (ex. `command -e "text here"`)
5. Check the contents of `file1.txt`
6. From your current location in the file system, create a folder named `folder2` that is a **_sibling_** of `folder1` using a single command
7. From your current location in the file system, Navigate to `folder2`using a single command
8. Add a file named `file2.txt` in `folder2`
9. Use text commands to add the following text to `file2.txt`: `"grapes\ngrapes\napples\noranges\nlimes\nlimes\nlemons\nlemons\ngrapes\npears\npears\nberries"` Hint: you will need to use -e along with your command to ensure each item is on separate line (ex. `command -e "text here"`)
10. Filter out duplicate adjacent lines from from `file2.txt` and add the filtered list to a new file named `unique-file2.txt`
11. Run the command: `exit` in the Shell
12. Click the `Shell` tab. Located next to the `Console` tab in your repl
13. Run the command `cat ~/.bash_history > my-history.txt`
14. Use the "Invite" button in the top right of the replit.com window to generate a sharable link (as showin in [video](https://www.youtube.com/watch?v=ZAC0TQEU5gI) linked here and above)
9. Use text commands to add the following text to `file2.txt`: `"grapes\ngrapes\napples\noranges\nlimes\nlimes\nlemons\nlemons\ngrapes\npears\npears\nberries"` <strong>There should be one item per line in the file</strong>. Hint: you will need to use -e along with your command to ensure each item is on separate line (ex. `command -e "text here"`)
10. Run the command: `exit` in the console
11. Click the `Shell` tab. Located next to the `Console` tab in your repl
12. Run the command `cat ~/.bash_history > my-history.txt`
13. Check that `my-history.txt` contains your complete command history
15. Take a screenshot of the Console showing the commands you used to complete the assignment
16. Submit your link to the Canvas submission page for this session
17. Submit your screenshot to the Canvas submission page for this session
16. Submit your screenshot to the Canvas submission page for this session
17. Submit your replit project using the submit button on replit