Script for å beregne soloppgang og solnedgang, til bruk med raspistill
[einar-bin] / middag.sh
index 9f2b66b1a27bbe73d4f78d7c09d7aaf958603858..ee3fbe95609aef8fbb2917bb4bdef3d7242a7867 100755 (executable)
--- a/middag.sh
+++ b/middag.sh
@@ -6,13 +6,23 @@ Prep=(
  'Grillet'
  'Gratinert'
  'Bakt'
  'Grillet'
  'Gratinert'
  'Bakt'
+ 'Fritert'
+ 'Dampet'
+ 'Posjert'
 )
 
 Meat=(
  'laks'
 )
 
 Meat=(
  'laks'
- 'biff'
+ 'indrefilet av svin'
+ 'indrefilet av storfe'
  'kylling'
  'kylling'
+ 'kalkun'
  'grøt'
  'grøt'
+ 'torsk'
+ 'kotelett'
+ 'løvbiff'
+ 'sau'
+ 'egg'
 )
 
 Sides=(
 )
 
 Sides=(
@@ -21,31 +31,27 @@ Sides=(
  'wokgrønsaker'
  'kokte grønsaker'
  'fries'
  'wokgrønsaker'
  'kokte grønsaker'
  'fries'
+ 'smør, sukker og kanel'
  'salat'
  'salat'
+ 'couscous'
+ 'søtpotetfries'
+ 'risotto'
+ 'potetmos'
 )
 
 )
 
-PrepCount=0
-while [ "x${Prep[PrepCount]}" != "x" ]; do
- ((PrepCount++))
-done
-
-MeatCount=0
-while [ "x${Meat[MeatCount]}" != "x" ]; do
- ((MeatCount++))
-done
-
-SideCount=0
-while [ "x${Sides[SideCount]}" != "x" ]; do
- ((SideCount++))
-done
-
 PrepN=$RANDOM
 PrepN=$RANDOM
-(( PrepN %= $PrepCount ))
+(( PrepN %= ${#Prep[@]} ))
 
 MeatN=$RANDOM
 
 MeatN=$RANDOM
-(( MeatN %= $MeatCount ))
+(( MeatN %= ${#Meat[@]} ))
 
 SideN=$RANDOM
 
 SideN=$RANDOM
-(( SideN %= $SideCount ))
+(( SideN %= ${#Sides[@]} ))
+
+if (( RANDOM % 4 == 0 )); then 
+ Bacon=" og bacon"
+else
+ Bacon=""
+fi
 
 
-echo "${Prep[PrepN]} ${Meat[MeatN]} med ${Sides[SideN]}"
+echo "${Prep[PrepN]} ${Meat[MeatN]} med ${Sides[SideN]}${Bacon}"