blob: 2f1dfcef937372efd2ca93149a9833060269acf6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
#! /bin/bash
main() {
case "$1" in
(--help)
echo "report temperature in K, °C, °R, or °F."
;;
(-C|--celsius)
espeak_inside `inside_temp 'x - 273.15'` Grad Zelsius
espeak_outside `outside_temp 'x - 273.15'` Grad Zelsius
;;
(-F|--fahrenheit)
espeak_inside `inside_temp 'x * 9/5 - 459.67'` Grad Fahrenheit
espeak_outside `outside_temp 'x * 9/5 - 459.67'` Grad Fahrenheit
;;
(-R|--rankine)
espeak_inside `inside_temp 'x * 9/5'` Grad Renkin
espeak_outside `outside_temp 'x * 9/5'` Grad Renkin
;;
(-K|--kelvin|*)
espeak_inside `inside_temp` Kelvin
espeak_outside `outside_temp` Kelvin
;;
esac
}
## temp [<formula with temperature as x>]
## Echo temperature in K. If formula is given then return that result instead.
inside_temp() {
echo "scale=2; x=`/krebs/temper/temper` + 273.15; ${1-x}" | bc
}
outside_temp() {
echo "scale=2; x=`dig +short txt outside.elwood.temp.citecs.de |
sed 's/^"DEG \([0-9]\+\.[0-9]\+\)"$/\1/'
` + 273.15; ${1-x}" | bc
}
espeak_inside() {
echo Die Krebs-tempera-tur beträgt $@ | to_espeak
}
espeak_outside() {
echo Die Außen-tempera-tur beträgt $@ | to_espeak
}
to_espeak() {
sed '
s/\(\.[0-9]\)0\+/\1/g
s/\(\.[0-9]\)\([0-9]\)[0-9]*/ \1 \2 /;
s/^-/minus /;
s/\./ komma /;
' | tee $NOISE_linefeed
}
main "$@"
|