8 lines
84 B
Bash
8 lines
84 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [[ "$1" == "" ]]; then
|
||
|
echo "SUSPEND"
|
||
|
else
|
||
|
systemctl suspend
|
||
|
fi
|