5 lines
143 B
Bash
Executable File
5 lines
143 B
Bash
Executable File
#!/bin/sh
|
|
echo "Attempt to suspend at $(/bin/date)" >> /tmp/suspend
|
|
/usr/sbin/zzz
|
|
echo "Resuming from suspend at $(/bin/date)" >> /tmp/suspend
|