1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/systemd-run.md
cyqsimon 36e2578753
systemd-run: add page (#9949)
* systemd-run: add page

* systemd-run: fix minor typo

* systemd-run: reorder wording to reduce ambiguity

* systemd-run: apply review suggestions

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-03-21 11:19:40 +08:00

24 lines
959 B
Markdown

# systemd-run
> Run programs in transient units.
> More information: <https://manned.org/systemd-run>.
- Start a transient service:
`sudo systemd-run {{command}} {{argument1 argument2 ...}}`
- Start a transient service under the service manager of the current user (no privileges):
`systemd-run --user {{command}} {{argument1 argument2 ...}}`
- Start a transient service with a custom unit name and description:
`sudo systemd-run --unit={{name}} --description={{string}} {{command}} {{argument1 argument2 ...}}`
- Start a transient service that does not get cleaned up after it terminates with a custom environment variable:
`sudo systemd-run --remain-after-exit --set-env={{name}}={{value}} {{command}} {{argument1 argument2 ...}}`
- Start a transient timer that periodically runs its transient service (see `man systemd.time` for calendar event format):
`sudo systemd-run --on-calendar={{calendar_event}} {{command}} {{argument1 argument2 ...}}`