-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.main
executable file
·52 lines (49 loc) · 1.55 KB
/
functions.main
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
#!/bin/bash
#Main functions of the program. You can add functions if you need. Please, as specified in the LICENCE file,
#report me all your changes at : mathieuconan(at)gmail(dot)com
#Written by Mathieu CONAN
#because of locale installed on different system, date doesn't always the same string.This function fixes that :)
FunctionDateConvert() {
Month=`date +%m`
case $Month in
"01") Month="Jan";;
"02") Month="Feb";;
"03") Month="Mar";;
"04") Month="Apr";;
"05") Month="May";;
"06") Month="Jun";;
"07") Month="Jul";;
"08") Month="Aug";;
"09") Month="Sep";;
"10") Month="Oct";;
"11") Month="Nov";;
"12") Month="Dec";;
*) echo -e "\tDate Convert function error. Please report this bug.\n"; exit 0;;
esac
}
FunctionTimeFormat() {
#Cette fonction gere le format entré si vous avez entrez uen recherche en heure, en minutes, en secondes...
#date actuelle + 1h pour etre dans le bon creneau on travail en seconde ici
Now=$((`date +"%s"` + 3600))
case $1 in
-s)
#Calcul la date entreé dans $1 en seconde et renvoi un timestamp
StartTimestamp=`date --date "$2 sec ago" +"%s"`
;;
-m)
#Calcul la date entreé dans $1 en minutes et renvoi un timestamp
StartTimestamp=`date --date "$2 min ago" +"%s"`
;;
-H)
#Calcul la date entreé dans $1 en heure et renvoi un timestamp
StartTimestamp=`date --date "$2 hours ago" +"%s"`
;;
-d)
#Calcul la date entreé dans $1 en jours et renvoi un timestamp
StartTimestamp=`date --date "$2 days ago" +"%s"`
;;
*)
echo -e "\tTime format function error. Please report this bug.\n"; exit 0;
;;
esac
}