This command line challenge is designed to familiarize you with the terminal. This challenge covers the most commonly used commands that any developer should know to succeed in life.
❗ We recommend that you read the lesson The Command Line on the 4Geeks.com platform before doing this exercise.
💻 The challenge is designed for computers using Linux bash. Use Github Codespaces or Gitpod if you need a cloud terminal.
This project comes with the necessary files to start working immediately. Inside this repository, you will find an organized folder structure to work with.
We recommend opening this same repository using a development environment like Codespaces (recommended) or Gitpod.
This is the repository you need to open:
https://github.com/breatheco-de/excercise-terminal-challenge.git
👉 Please follow these steps on how to start a coding project.
Alternatively, you can clone it to your local computer.
⚠️ Before cloning, be aware of this potential issue on Windows
On Windows and some Linux configurations, there is a limit on the number of characters allowed in file and folder names. If the repository has too long paths, you might encounter the error:
Filename too long
To avoid this problem, instead of cloning the repository in the usual way, use the --no-checkout
option, which will prevent Git from automatically extracting the long files. Then, manually checkout with these commands:
git clone --no-checkout https://github.com/breatheco-de/exercise-terminal-challenge.git
cd exercise-terminal-challenge
git checkout HEAD --
💡 Important: Remember to save and upload your code to GitHub by creating a new repository, updating the remote (
git remote set-url origin <your new url>
), and uploading the code to your new repository using theadd
,commit
, andpush
commands from the git terminal.
The small challenges and interactive slides are NOT in this repository, but are deployed elsewhere.
To access the interactive slides and practice challenges, visit the following link:
If you experience any issues with the website, follow these steps after cloning or opening the following repository in Codespaces:
https://github.com/breatheco-de/exercise-terminal-challenge-slides.git
$ npm install
$ npm run start
This and many other projects are used to learn to code by students of 4Geeks Academy Coding Bootcamp created by Alejandro Sanchez and many other contributors. Learn more about our Programming Courses to become a Full Stack Developer, or our Data Science Bootcamp.