📅  最后修改于: 2023-12-03 15:32:38.019000             🧑  作者: Mango
Le Wagon is a leading coding bootcamp that offers a hands-on, immersive experience for individuals looking to learn how to code. When you join Le Wagon, you'll need to set up your environment with the right tools to get started. In this guide, we'll focus on setting up your environment with Shell-Bash.
Shell-Bash is a command-line interface (CLI) program used to execute commands and scripts on Unix and Linux systems. Bash stands for "Bourne-again shell," which is a reference to the original Bourne shell that Shell-Bash was based on.
macOS comes with Shell-Bash pre-installed, so you don't need to install it separately. You can access it by opening Terminal, which is located in the Applications/Utilities folder.
Most Linux distributions also come with Shell-Bash pre-installed. If not, you can use your package manager to install it. For example, on Ubuntu, you can use the following command:
sudo apt-get install bash
Windows doesn't have Shell-Bash pre-installed, but you can install it through a third-party application called Git Bash. You can download Git Bash from the official website here.
Once you have Shell-Bash installed, you can start executing commands. Here are a few basic commands to get started:
ls
: list the contents of the current directorycd
: change the current directorymkdir
: create a new directorytouch
: create a new filecp
: copy a file or directorymv
: move a file or directoryrm
: remove a file or directorySetting up your environment with Shell-Bash is an essential step to getting started with Le Wagon. With this guide, you should have everything you need to get started.