ACC SHELL

Path : /usr/lib/pm-utils/sleep.d/
File Upload :
Current File : //usr/lib/pm-utils/sleep.d/99info

#!/bin/sh
#
# be nice to the user and tell him that something is going on...

. "${PM_FUNCTIONS}"

case "$1" in
	thaw|resume)
		echo "resuming..." > /dev/tty0
		;;
	*) exit $NA
		;;
esac

ACC SHELL 2018