From 74a3fc57bf7c941b8a71a5089356835a203a382a Mon Sep 17 00:00:00 2001 From: "ndomassi.tando_ird.fr" <ndomassi.tando@ird.fr> Date: Tue, 26 Nov 2024 09:02:52 +0000 Subject: [PATCH] modif exercice liens symboliques avec data --- .../bash-4-working_with_files_and_directories.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/pages/bash/bash-4-working_with_files_and_directories.md b/docs/pages/bash/bash-4-working_with_files_and_directories.md index bdd9bee..9803ead 100644 --- a/docs/pages/bash/bash-4-working_with_files_and_directories.md +++ b/docs/pages/bash/bash-4-working_with_files_and_directories.md @@ -233,26 +233,26 @@ ln -s existing_file [soft_link_name] ``` !!! Exercice - Create a Soft link of the `script` folder + Create a Soft link of the `data` folder called `data`in the `analysis`folder ??? example "Click to show the solution" - ```ln -s ../script``` + ```ln -s /home/<user_name>/training_unix_basics/data data``` Run `ls -l`. What do you see? ??? example "Click to show the solution" There is an extra arrow showing to what file my link point to. - Create a Soft link of the `script/script1.sh` file and run again `ls -l` + Create a Soft link of the `script/script1.sh` file called `script1.sh` and run again `ls -l` ??? example "Click to show the solution" ```bash - ln -s ../data/data1.fa + ln -s ../script/script1.sh script1.sh ls -l ``` To remove links you can use `rm` like for files or the dedicated `unlink` command (the only difference is that unlink cannot remove directories). -!!! question "Remove the links we set: `script`, `script1.sh`" +!!! question "Remove the links we set: `data`, `script1.sh`" ??? example "Click to show the solution" ```bash - rm script script1.sh + rm data script1.sh ``` -- GitLab