| Current Path : /usr/X11R6/lib64/ConsoleKit/scripts/ |
| Current File : //usr/X11R6/lib64/ConsoleKit/scripts/ck-system-suspend |
#!/bin/sh #Try for common tools if [ -x "/sbin/pm-suspend" ] ; then /sbin/pm-suspend exit $? elif [ -x "/usr/sbin/pm-suspend" ] ; then /usr/sbin/pm-suspend exit $? else exit 1 fi