This repository has been archived on 2024-01-26. You can view files and clone it, but cannot push or open issues or pull requests.
hackerspace-status-arduino/push.d/skeleton.sh
2015-09-28 23:06:01 +02:00

13 lines
98 B
Bash

#!/bin/sh
case "$1" in
ON)
echo 'ON'
;;
HALF)
echo 'HALF'
;;
OFF)
echo 'OFF'
;;
esac