Update cheatsheets

This commit is contained in:
ivuorinen
2025-09-20 00:18:04 +00:00
parent 2442abf01b
commit 81a6c63f96
16 changed files with 119 additions and 11 deletions

View File

@@ -0,0 +1,22 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# systemctl unset-environment
> Unset one or more service manager environment variables.
> This undoes the effect of `systemctl set-environment`.
> More information: <https://www.freedesktop.org/software/systemd/man/latest/systemctl.html#unset-environment%20VARIABLE%E2%80%A6>.
- Unset a single environment variable:
`systemctl unset-environment {{var}}`
- Unset multiple environment variables at once:
`systemctl unset-environment {{var1 var2 ...}}`
- Unset an environment variable in the user service manager:
`systemctl --user unset-environment {{var}}`