diff --git a/MyDocuments/Quiz/QUIZ.md b/MyDocuments/Quiz/QUIZ.md index f9a4853..31b89d9 100644 --- a/MyDocuments/Quiz/QUIZ.md +++ b/MyDocuments/Quiz/QUIZ.md @@ -6,12 +6,12 @@ You can mark your choice by putting an `x` in the correct box - [ ] The terminal is an interface that allows you to access the command line - [ ] It can be much faster to complete some tasks using a Terminal than with a GUI -- [ ] You have access to many more commands and scripts on the Terminal than with a GUI -- [ ] The terminal gives you more powers/privileges to complete tasks than a GUI +- [] You have access to many more commands and scripts on the Terminal than with a GUI +- [x] The terminal gives you more powers/privileges to complete tasks than a GUI **What is the correct way to move to a directory called "Projects"?** -- [ ] cd Projects +- [x] cd Projects - [ ] mv Projects - [ ] cd ..Projects - [ ] mv .. @@ -20,13 +20,13 @@ You can mark your choice by putting an `x` in the correct box - [ ] cd .. - [ ] cd ~ -- [ ] mv .. +- [x] mv .. - [ ] cd ./ **How do you stop a long running task in the terminal?** - [ ] The tab key -- [ ] ctrl+c +- [x] ctrl+c - [ ] ctrl+shift or cmd+shift - [ ] The enter key - [ ] The escape key @@ -34,7 +34,7 @@ You can mark your choice by putting an `x` in the correct box **How do you auto-complete a command that you are typing?** -- [ ] The tab key +- [x] The tab key - [ ] ctrl+c - [ ] ctrl+shift or cmd+shift - [ ] The enter key @@ -43,7 +43,7 @@ You can mark your choice by putting an `x` in the correct box **What's the correct command to view all the files in your current directory?** -- [ ] ls +- [x] ls - [ ] pwd - [ ] mv - [ ] cd @@ -53,7 +53,7 @@ You can mark your choice by putting an `x` in the correct box **What's the correct command to see the current directory you are in?** - [ ] ls -- [ ] pwd +- [x] pwd - [ ] mv - [ ] cd - [ ] clear @@ -65,7 +65,7 @@ You can mark your choice by putting an `x` in the correct box - [ ] pwd - [ ] mv - [ ] cd -- [ ] clear +- [x] clear - [ ] mkdir **What is the correct command to make a folder in the terminal?** @@ -75,13 +75,13 @@ You can mark your choice by putting an `x` in the correct box - [ ] mv - [ ] cd - [ ] clear -- [ ] mkdir +- [x] mkdir **What is the correct command to move a file in the terminal?** - [ ] ls - [ ] pwd -- [ ] mv +- [x] mv - [ ] cd - [ ] clear - [ ] mkdir @@ -92,4 +92,4 @@ You can mark your choice by putting an `x` in the correct box - [ ] extra - [ ] function - [ ] dash -- [ ] all +- [x] all diff --git a/MyDocuments/Scripts/count_to_100.sh b/MyDocuments/Scripts/count_to_100.sh index 1a36bbd..96e1d87 100755 --- a/MyDocuments/Scripts/count_to_100.sh +++ b/MyDocuments/Scripts/count_to_100.sh @@ -1,5 +1,5 @@ ## sleep in bash for loop ## -for i in {1..100} +for i in {1..10} do if [ $i -lt 11 ] then diff --git a/README.md b/README.md index 2cab9a4..23fc0b8 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,21 @@ Hint: You should use `cd` and `ls`. #### 1) Answer +`Mac@192 Terminal-Coursework-Week1 % pwd +/Users/Mac/Documents/CYF/Terminal-Coursework-Week1 +Mac@192 Terminal-Coursework-Week1 % ls +GRADING.md HOW-TO-SUBMIT.md README.md +HOW-TO-GET-HELP.md MyDocuments +Mac@192 Terminal-Coursework-Week1 % cd myDocuments +Mac@192 myDocuments % ls +Photos Projects Quiz Scripts +Mac@192 myDocuments % cd projects +Mac@192 projects % ls +JavaScript-Core1 MyFirstWebsite PortfolioWebsite +Mac@192 projects % cd JavaScript-Core1 +Mac@192 JavaScript-Core1 % ls +script.js +Mac@192 JavaScript-Core1 % ` ### 2) Find my Hotel Photo @@ -29,6 +44,12 @@ Next, I want to try and find the photo of my hotel from my holiday in July that #### 2) Answer +Mac@192 Terminal-Coursework-Week1 % cd MyDocuments +Mac@192 MyDocuments % cd photo +cd: no such file or directory: photo +Mac@192 MyDocuments % cd Photos +Mac@192 Photos % ls +HolidayJuly HolidayJune ### 3) Counting Script @@ -53,6 +74,28 @@ For this task, I want you to **stop** the counter when I have counted to 10. Copy the output of the script here +Mac@192 Scripts % ./count_to_100.sh +I have counted to 1 +usage: sleep seconds +I have counted to 2 +usage: sleep seconds +I have counted to 3 +usage: sleep seconds +I have counted to 4 +usage: sleep seconds +I have counted to 5 +usage: sleep seconds +I have counted to 6 +usage: sleep seconds +I have counted to 7 +usage: sleep seconds +I have counted to 8 +usage: sleep seconds +I have counted to 9 +usage: sleep seconds +I have counted to 10 +usage: sleep seconds +Mac@192 Scripts % ### 4) Quiz