Skip to content

Commit 0ce00a7

Browse files
Sydney MaSydney Ma
authored andcommitted
first edition
1 parent 4446d15 commit 0ce00a7

1 file changed

Lines changed: 11 additions & 2 deletions

File tree

02_activities/assignments/assignment.sh

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,31 @@ unzip -q rawdata.zip
2828
# Complete assignment here
2929

3030
# 1. Create a directory named data
31+
mkdir data
3132

3233
# 2. Move the ./rawdata directory to ./data/raw (eg. move it into ./data and rename it to raw)
34+
mv rawdata data/raw
3335

3436
# 3. List the contents of the ./data/raw directory
37+
ls data/raw
3538

3639
# 4. Create the directory ./data/processed,
3740
# then create the following sub-directories within it: server_logs, user_logs, and event_logs
41+
mkdir -p data/processed/server_logs/user_logs/event_logs
3842

3943
# 5. Copy all server log files (files with "server" in the name AND a .log extension) from ./data/raw to ./data/processed/server_logs
40-
44+
cp data/raw/*server*.log data/processed/server_logs/
4145
# 6. Repeat the above step for user logs and event logs
46+
cp data/raw/*user*.log data/processed/user_logs/
47+
cp data/raw/*event*.log data/processed/event_logs/
4248

4349
# 7. For user privacy, remove all files containing IP addresses (files with "ipaddr" in the filename) from ./data/raw and ./data/processed/user_logs
50+
rm data/raw/*ipaddr*.log
51+
rm data/processed/user_logs/*ipaddr*.log
4452

4553
# 8. Create a file named ./data/inventory.txt that lists all the files in the subfolders of ./data/processed
46-
54+
# ls data/processed > data/inventory.txt
55+
find data/processed -type f > data/inventory.txt
4756

4857
###########################################
4958

0 commit comments

Comments
 (0)