22 lines
445 B
Bash
22 lines
445 B
Bash
|
#!/bin/sh
|
||
|
# This script is for private use only.
|
||
|
# Look in readme for documentation
|
||
|
#user=
|
||
|
#password=
|
||
|
|
||
|
# DO NOT EDIT BELOW!
|
||
|
if [ $2 == "on" ]
|
||
|
then
|
||
|
sshpass -p "$password" ssh $user@$1 "echo 1 > /proc/power/output1" >/dev/null 2>&1
|
||
|
echo on
|
||
|
|
||
|
elif [ $2 == "off" ]
|
||
|
then
|
||
|
sshpass -p "$password" ssh $user@$1 "echo 0 > /proc/power/output1" >/dev/null 2>&1
|
||
|
echo off
|
||
|
|
||
|
else
|
||
|
echo "Please use following syntax: light <host> [on off]"
|
||
|
|
||
|
fi
|