36 lines
615 B
Bash
Executable File
36 lines
615 B
Bash
Executable File
#!/bin/sh
|
|
export PATH=$PATH:/usr/bin/local
|
|
cname=`scutil --get ComputerName`
|
|
export CNAME=$cname
|
|
|
|
echo ""
|
|
echo ""
|
|
echo "// idlecheck_tasks"
|
|
echo ""
|
|
echo ""
|
|
echo "pmset -g"
|
|
echo "----------------------------------------------"
|
|
/usr/bin/pmset -g
|
|
|
|
|
|
echo ""
|
|
echo ""
|
|
echo ""
|
|
echo "pmset -g sched"
|
|
echo "----------------------------------------------"
|
|
/usr/bin/pmset -g sched
|
|
|
|
echo ""
|
|
echo ""
|
|
echo ""
|
|
echo "pmset -g assertions"
|
|
echo "----------------------------------------------"
|
|
/usr/bin/pmset -g assertions
|
|
|
|
#echo ""
|
|
#echo ""
|
|
#echo ""
|
|
#echo "ps auxc -r"
|
|
#echo "------------------------------------------"
|
|
#ps auxc -r
|