Lab

Course Work Directory Structure

Within your home directory, make a new one named sei.

cd
mkdir sei

Create a folder structure to store the code you'll be working on during this course. It should look something like this (when you run tree).

sei
β”œβ”€β”€ project1
β”œβ”€β”€ project2
β”œβ”€β”€ project3
β”œβ”€β”€ project4
β”œβ”€β”€ tmp-homework
└── classwork
    β”œβ”€β”€ unit1
    β”‚   β”œβ”€β”€ lesson_01_1
    β”‚   β”œβ”€β”€ lesson_01_2
    β”‚   β”œβ”€β”€ lesson_01_3
    β”‚   β”œβ”€β”€ lesson_02_1
    β”‚   β”œβ”€β”€ lesson_02_2
    β”‚   β”œβ”€β”€ lesson_02_3
    β”‚   β”œβ”€β”€ lesson_03_1
    β”‚   β”œβ”€β”€ lesson_03_2
    β”‚   └── lesson_03_3
    β”œβ”€β”€ unit2
    β”œβ”€β”€ unit3
    └── unit4

You don't need to create every single lesson folder yet. :)

NOTE: Once you learn how to use git and GitHub, we will replace the tmp-homework directory with the "real" one.

Last updated

Was this helpful?