Update cheatsheets

This commit is contained in:
ivuorinen
2025-11-29 00:20:05 +00:00
parent 5c637b8c84
commit d1988a6d2c
87 changed files with 623 additions and 154 deletions

18
tldr/linux/systemctl-link Normal file
View File

@@ -0,0 +1,18 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# systemctl link
> Link a unit file located outside the unit file search path into the search path.
> See also: `systemctl disable`.
> More information: <https://www.freedesktop.org/software/systemd/man/systemctl.html#link%20PATH%E2%80%A6>.
- Link a unit file to make it available for systemd commands:
`systemctl link {{path/to/service}}`
- Link multiple unit files at once:
`systemctl link {{path/to/service1 path/to/service2 ...}}`