eolas/neuron/7c141533-1806-4f5c-a70e-7527be05b1c5/Symlinks.md
2025-01-24 19:36:04 +00:00

23 lines
439 B
Markdown

---
tags:
- shell
- Linux
- procedural
---
> A symbolic link, also termed a soft link, is a special kind of file that
> points to another file. Unlike a hard link, a symbolic link does not contain
> the data in the target file. It simply points to another entry somewhere in
> the file system.
# Syntax
```
ln -s -f ~/[existing_file] ~/.[file_you_want_to_symbolise]
```
Real example:
```
ln -s -f ~/dotfiles/.vimrc ~/.vimrc
```