Paste #124420

   
pasted on 16.07.2019 12:09
  • Edit to this paste
  • Print
  • Raw
  • The following pastes replied to this paste:  # 151455 # 168354 # 272813
  • Show paste tree
  • Compare with paste
    #  
  • Toggle line numbers
  • Syntax highlighting  
Text paste
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#! /bin/bash

# Tests à faire en changeant de fuseau :
# cp /usr/share/zoneinfo/Europe/Athens /etc/localtime 
# cp /usr/share/zoneinfo/Europe/Paris /etc/localtime

hmem=$(date +%H)
hnow=$(date +%H)


while :
do
	hnow=$(date +%H)
	#echo "Heure actuelle : $hnow - Heure mémorisée : $hmem"
	
	if [ $hnow != $hmem ]
	then
		#echo "Heure changée"
		play /home/adrien/tmp/horloge/$hnow.ogg	
		hmem=$hnow
	fi

	sleep 1
done
Add Comment
Author