3 lines
165 B
Bash
3 lines
165 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
sudo systemctl list-unit-files --state=enabled > systemd_enabled.txt
|
||
|
|
systemctl list-unit-files --user --state=enabled > systemd_enabled_user.txt
|