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