1
0
Fork 0
This repository has been archived on 2024-06-28. You can view files and clone it, but cannot push or open issues or pull requests.
Umweltdatenmessung/etc_init.d/aufzeichnung

21 lines
331 B
Text
Raw Normal View History

2014-02-14 19:51:10 +01:00
#! /bin/sh
# /etc/init.d/aufzeichnung
case "$1" in
start)
echo "Aufzeichnung wird gestartet"
/home/pi/Temperaturmessung/export.sh > /home/pi/log/aufzeichnung.txt
;;
stop)
echo "Aufzeichnung wird beendet"
killall /bin/bash
;;
*)
echo "Verwendung: /etc/init.d/aufzeichnung {start|stop}"
exit 1
;;
2014-02-14 19:51:10 +01:00
esac
exit 0