mirror of
https://github.com/arkorty/Scripts.git
synced 2026-03-18 09:12:27 +00:00
22 lines
413 B
Bash
Executable File
22 lines
413 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Script: suspend
|
|
# License: MIT
|
|
# Author: Arkaprabha Chakraborty
|
|
# Created: 12-05-24
|
|
# Dependencies: None
|
|
#
|
|
# Copyright (C) 2024 Arkaprabha Chakraborty
|
|
|
|
# Call systemctl suspend
|
|
systemctl suspend
|
|
|
|
# Check the return status of systemctl suspend
|
|
if [ $? -ne 0 ]; then
|
|
echo "Error: Failed to suspend the system." >&2
|
|
exit 1
|
|
fi
|
|
|
|
echo "System suspended successfully."
|
|
exit 0
|