From b55703460d3b58f4b37ad8f0252a23974c0f7308 Mon Sep 17 00:00:00 2001 From: tiyn Date: Mon, 11 Sep 2023 23:07:41 +0200 Subject: [PATCH] shell: added ln --- wiki/games/steam.md | 3 ++- wiki/linux/shell.md | 9 +++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/wiki/games/steam.md b/wiki/games/steam.md index 94fee1a..5b15837 100644 --- a/wiki/games/steam.md +++ b/wiki/games/steam.md @@ -72,7 +72,8 @@ used the [user space configuration](../syncthing.md#user-space-configuration-for-linux) is recommended. Afterwards move the game saves to the directory set up by Syncthing and create -symbolic links to link them back to the original place. +[symbolic links](/wiki/linux/shell.md#symbolic-links-using-ln) to link them back to the original +place. ## Error Handling diff --git a/wiki/linux/shell.md b/wiki/linux/shell.md index 248081a..ed4f734 100644 --- a/wiki/linux/shell.md +++ b/wiki/linux/shell.md @@ -24,6 +24,15 @@ The following is a list of Unix shells that are POSIX compliant. This section addresses various different functions by and actions that can be taken with shell commands. +### Symbolic Links using `ln` + +`ln` is a command to create links between files and folders. +The most simple way to create a link between two folders or files is running the following +command. +Replace `` and `` as needed. + +`ln -s ` + ### `ls` and its Alternatives `ls` is a command to list files and directories.