all repos — h3rald @ f149f5c62af94c18ab5af3e38f868366a87b79c9

The sources of https://h3rald.com

contents/grimoire/create-symlink.md

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
-----
id: create-symlink
title: "Create a symbolic link"
subtitle: "Because I never remember if the source file comes first or second..."
content-type: spell 
-----

The existing file you want to link to comes first, and the new file that links to it comes second.

Oh, and don't forget `-s`.

```bash
ln -s <source_file> <myfile>
```