From d7fc653e51e24d77e117a9a1c0caa478367ddf15 Mon Sep 17 00:00:00 2001 From: Genesis Lara Date: Wed, 26 Apr 2023 17:35:18 -0400 Subject: [PATCH 1/2] task 1 --- my-solution.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/my-solution.md b/my-solution.md index f6558af..3d12986 100644 --- a/my-solution.md +++ b/my-solution.md @@ -3,7 +3,22 @@ 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 From d6d47319c2b03db16f6a946e600322fd2342bcd1 Mon Sep 17 00:00:00 2001 From: Genesis Lara Date: Wed, 26 Apr 2023 17:35:45 -0400 Subject: [PATCH 2/2] task 2 --- my-solution.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/my-solution.md b/my-solution.md index 3d12986..47add72 100644 --- a/my-solution.md +++ b/my-solution.md @@ -26,5 +26,14 @@ Paste your solution to Problem 1 between the back ticks below. 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 ```