Conversation
There was a problem hiding this comment.
Autograder results
| question | status | comment |
|---|---|---|
| Part 1 - Q1 | ✅ | |
| Part 1 - Q2 | ❌ | rawdata not moved to data/raw |
| Part 1 - Q3 | ✅ | |
| Part 1 - Q4 | ✅ | |
| Part 1 - Q5 | ❌ | No server log files in data/raw |
| Part 1 - Q6 | ❌ | No user log files in data/raw; No event log files in data/raw |
| Part 1 - Q7 | ✅ | |
| Part 1 - Q8 | ✅ | |
| Part 2 | ❌ | coworker-changes branch not found in commit history |
Please address the issues listed above.
KasraVakiloroayaei
suggested changes
Apr 13, 2026
KasraVakiloroayaei
left a comment
There was a problem hiding this comment.
Incomplete
You will need to try to get the assignment checker to verify/check off all sections for assignment to be completed.
There was a problem hiding this comment.
Autograder results
| question | status | comment |
|---|---|---|
| Part 1 - Q1 | ✅ | |
| Part 1 - Q2 | ❌ | rawdata not moved to data/raw |
| Part 1 - Q3 | ✅ | |
| Part 1 - Q4 | ✅ | |
| Part 1 - Q5 | ✅ | |
| Part 1 - Q6 | ✅ | |
| Part 1 - Q7 | ✅ | |
| Part 1 - Q8 | ✅ | |
| Part 2 | ❌ | coworker-changes branch not found in commit history |
Please address the issues listed above.
KasraVakiloroayaei
suggested changes
Apr 15, 2026
| # 2. Move the ./rawdata directory to ./data/raw (eg. move it into ./data and rename it to raw) | ||
|
|
||
| mkdir ./data/raw/ | ||
| mv ./rawdata.zip ./data/raw/ |
There was a problem hiding this comment.
Please try the following:
mv ./rawdata ./data/raw
You do not have to work with the zip, rather the directory itself
|
|
||
| mkdir ./data/raw/ | ||
| mv ./rawdata.zip ./data/raw/ | ||
| unzip ./data/raw/rawdata.zip -d ./data/raw/ |
There was a problem hiding this comment.
Similarly may not be necessary.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What changes are you trying to make? (e.g. Adding or removing code, refactoring existing code, adding reports)
Added a shell script (assignment.sh) to automate project data setup, including creating a directory structure, downloading and extracting raw data, copying log files into categorized folders, removing files that contain IP addresses for privacy, and generating a file inventory.
What did you learn from the changes you have made?
The importance of creating a destination directory before moving files into it.
How to use unzip -d
How to use find -type f
Was there another approach you were thinking about making? If so, what approach(es) were you thinking of?
Were there any challenges? If so, what issue(s) did you face? How did you overcome it?
mv ./rawdata ./data/raw didnt work I had to use mv ./rawdata.zip ./data/raw
when I did ./rawdata.zip ./data/raw/ the "raw"created was a file and not a directory.
I had a challenge copying files like server_logs
I had a challenge getting to navigate and correcting some of the errors I encountere
How were these changes tested?
i tested using ls and cd commands to locate the directories
I used bash assignment.sh and also checked using ls and cd
A reference to a related issue in your repository (if applicable)
Checklist