From 44b1e37e3adcfa86325ba932dc807890d5acb8be Mon Sep 17 00:00:00 2001 From: xpetit <32063953+xpetit@users.noreply.github.com> Date: Wed, 30 Jun 2021 16:59:59 +0200 Subject: [PATCH] Improvements --- subjects/introduction/README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/subjects/introduction/README.md b/subjects/introduction/README.md index 52d72d76..53ef9bca 100644 --- a/subjects/introduction/README.md +++ b/subjects/introduction/README.md @@ -10,6 +10,8 @@ This repository will be the folder where all the exercices must be uploaded. Once created, clone that repository on your desktop. +To do so, open a terminal, you are going to type commands. + First, tell Git to remember your password (like a web browser would): ``` @@ -26,16 +28,16 @@ This command needs to be adapted with **your own username**. #### 2- set -Once the repository is created, write your first shell program called `hello.sh` +Once the repository is created, use you code editor to write your first shell script called `hello.sh` -When executed this program must print `Hello choumi!`, where `choumi` is your username. +When executed, this script must print `Hello choumi!`, where `choumi` is your username. ##### Usage If the username is `choumi`: ```console -$ ./hello.sh +$ bash hello.sh Hello choumi! $ ```