Blame view
plugins/systemd/systemd.plugin.zsh
436 Bytes
|
093a6c34b
|
1 2 |
user_commands=(
list-units is-active status show help list-unit-files
|
|
dcebc9e8f
|
3 |
is-enabled list-jobs show-environment cat) |
|
093a6c34b
|
4 5 6 7 |
sudo_commands=(
start stop reload restart try-restart isolate kill
reset-failed enable disable reenable preset mask unmask
|
|
dcebc9e8f
|
8 9 |
link load cancel set-environment unset-environment
edit)
|
|
093a6c34b
|
10 11 12 |
for c in $user_commands; do; alias sc-$c="systemctl $c"; done for c in $sudo_commands; do; alias sc-$c="sudo systemctl $c"; done |