all repos — h3rald @ 6b42b35e5b56074a84ca61395a4956a25a4d194c

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>
```