Skip to content
This repository was archived by the owner on Aug 17, 2024. It is now read-only.
Open
Show file tree
Hide file tree
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
29 changes: 14 additions & 15 deletions MyDocuments/Quiz/QUIZ.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,37 +4,37 @@ You can mark your choice by putting an `x` in the correct box

**Which of these is incorrect?**

- [ ] 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
- [x] The terminal is an interface that allows you to access the command line
- [x] It can be much faster to complete some tasks using a Terminal than with a GUI
- [x] 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
- [ ] mv Projects
- [ ] cd ..Projects
- [x] cd ..Projects
- [ ] mv ..

**What is the correct way to move up a directory?**

- [ ] cd ..
- [x] cd ..
- [ ] cd ~
- [ ] 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
- [ ] The delete key

**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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -64,8 +64,7 @@ You can mark your choice by putting an `x` in the correct box
- [ ] ls
- [ ] pwd
- [ ] mv
- [ ] cd
- [ ] clear
- [x] clear
- [ ] mkdir

**What is the correct command to make a folder in the terminal?**
Expand All @@ -75,20 +74,20 @@ 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

**What is the correct name for the part after the - in this command "ls -all"?**

- [ ] parameter
- [x] parameter
- [ ] extra
- [ ] function
- [ ] dash
Expand Down
3 changes: 2 additions & 1 deletion MyDocuments/Scripts/count_to_100.sh
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -9,3 +9,4 @@ do
fi
sleep 0.2s
done

29 changes: 26 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,13 @@ What commands would I need to change directory to the directory containing `scri

Hint: You should use `cd` and `ls`.


#### 1) Answer

<!-- Write your answer here -->
<!-- pwd,ls, cd, ls clear -->

### 2) Find my Hotel Photo
<!--july holiday, `CTF.PNG -->

Great work!

Expand All @@ -28,7 +30,7 @@ Next, I want to try and find the photo of my hotel from my holiday in July that

#### 2) Answer

<!-- Write your answer here -->
<!-- cyf.png -->

### 3) Counting Script

Expand All @@ -52,7 +54,28 @@ For this task, I want you to **stop** the counter when I have counted to 10.

Copy the output of the script here

<!-- Write your answer here -->
<!-- fathikahin@Fathis-MacBook-Air 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
fathikahin@Fathis-MacBook-Air Scripts % -->

### 4) Quiz

Expand Down