From 2bafd61f71f50c3cc9e013c16fac83be62f7abc7 Mon Sep 17 00:00:00 2001 From: Rikuya Osawa <109570170+rikuyaosawa@users.noreply.github.com> Date: Fri, 31 Jan 2025 06:54:25 +0900 Subject: [PATCH] add article resource (#8125) --- .../content/103-working-with-files/103-soft-hard-links.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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)