The ln command is used to create links between files.
For brevity, only symbolic links (also called "symlinks") will be described in this reference.
Usage: ln -s <target_path> <symlink_path>
This will create a symbolic link from the symbolic link's filesystem path to the target file or directory's filesystem path.
Enter ln --help to view the Help file or enter man ln to view the Manual for ln.