Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Completed Intro to Command Line #3

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 26 additions & 2 deletions my-solution.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,37 @@
Paste your solution to Problem 1 between the back ticks below.

```

➜ ~ history | tail -n 15
1 cd
2 cdHOME
3 CDHOME
4 cd
5 cd introductory-command-line-lab
6 cd
7 ls
8 mkdir introductory-command-line-lab
9 ls
10 cd
11 cd $HOME
12 cd introductory-command-line-lab
13 touch commands.txt
14 ls
15 cd ..
```

## Task 2

Paste your solution to Problem 1 between the back ticks below.

```

14 ls
15 cd ..
16 history | tail -n 15
17 cd $HOME
18 mkdir module-one
19 mkdir module-one/introductory-javascript
20 mkdir module-one/introductory-javascript/variables
21 touch module-one/introductory-javascript/variables/var.txt let.txt const.txt
22 open ./ module-one/introductory-javascript/variables
23 History | tail -n 10
```