diff --git a/src/data/roadmaps/linux/content/103-working-with-files/103-soft-hard-links.md b/src/data/roadmaps/linux/content/103-working-with-files/103-soft-hard-links.md index 331942130..5e3030a94 100644 --- a/src/data/roadmaps/linux/content/103-working-with-files/103-soft-hard-links.md +++ b/src/data/roadmaps/linux/content/103-working-with-files/103-soft-hard-links.md @@ -16,4 +16,8 @@ ln source_file.txt hard_link.txt ln -s source_file.txt soft_link.txt ``` -Please, understand that `source_file.txt` is the original file and `hard_link.txt` & `soft_link.txt` are the hard and soft links respectively. \ No newline at end of file +Please, understand that `source_file.txt` is the original file and `hard_link.txt` & `soft_link.txt` are the hard and soft links respectively. + +Learn more from the following resources: + +- [@article@How to understand the difference between hard and symbolic links in Linux](https://labex.io/tutorials/linux-how-to-understand-the-difference-between-hard-and-symbolic-links-in-linux-409929)