mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 03:05:48 +03:00
7 lines
95 B
Bash
7 lines
95 B
Bash
#!/bin/sh
|
|
|
|
if command -v zzz >/dev/null; then
|
|
zzz "$@"
|
|
else
|
|
echo 'mem' > /sys/power/state
|
|
fi
|