Skip to content

Instantly share code, notes, and snippets.

#CLI drill 2
1.Download the book using the command line
Command:
curl -o goblet_of_fire.txt https://raw.githubusercontent.com/bobdeng/owlreader/master/ERead/assets/books/Harry%20Potter%20and%20the%20Goblet%20of%20Fire.txt
Explanation:
The curl command is used to download files from the internet.
The -o option specifies the name of the file to save the content as.
#CLI DRILL 1
1.Create the main directory and move into it
Command:
mkdir hello
cd hello
Explanation: