May 21, 2023
Creating hard links using Go
There are two kinds of links on a Linux system: A hard link and a soft link (or a symbolic link).
In this post, I will be giving a brief information on inodes. After that, I will be presenting how to build a tool that allows us to create hard links on a Linux machine, in Go. ...