Skip to content

ali-nasir-ali/Terminal-Coursework-Week1

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Terminal Coursework

In this coursework we want to test what you've learnt in the previous coursework.

Tasks

1) Find my script

In this repository you'll find MyDocuments - this is all the documents that I use on my laptop.

I need to find the script.js file that is a part of MyFirstWebsite however you are not allowed to use a GUI, you must use Command Line and the Terminal.

What commands would I need to change directory to the directory containing script.js? In the section below, write all the commands you used.

Hint: You should use cd and ls.

1) Answer

I used two methods:

ls ,cd MyDocumets ,ls , cd JavaScript-Core1 ,ls

find -name script.js

./MyDocuments/Projects/JavaScript-Core1/script.js ./MyDocuments/Projects/MyFirstWebsite/scripts/script.js

2) Find my Hotel Photo

Great work!

Next, I want to try and find the photo of my hotel from my holiday in July that I want to send to a friend.

Note: You should do this by moving from where you are after completing the previous task.

2) Answer

cd .. ,ls ,cd .. ,cd Photos ,ls ,cd HolidayJuly ,ls ,cd Hotel ,ls ,cyf.png

3) Counting Script

Next, I want you to run the script in this directory

/MyDocuments/Scripts/

You can run the script by typing

./count_to_100.sh

when you're in the correct directory.

For this task, I want you to stop the counter when I have counted to 10.

3) Answer

Copy the output of the script here

sleep in bash for loop

for i in {1..100} do if [ $i -lt 11 ] then echo I have counted to $i else echo You should have used Ctrl+C to end the script by now! I have counted to $i! fi sleep 0.2s done

cd .. ,cd .. ,cd .. ,ls ,cd Scripts ,ls - count_to_100.sh ,cat count_to_100.sh

4) Quiz

In this directory you'll find a quick quiz for you to complete

/MyDocuments/Quiz

You should open the quiz in Visual Studio Code and complete it. You can do this either by opening this project in VSCode or by running the command

code QUIZ.md

when you're in the correct directory.

answer : cd .. ,ls ,cd Quiz.md ,cat Quiz.md ,nano Quiz.md

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 100.0%