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