Blame view

SHOW_ALL_LOGS.sh 1.41 KB
09e6cfd0   Etienne Pallier   1er bugfix du LOG...
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
57
58
59
60
61
62
nblinestoshow=50
path=config/logs/
day=`date +%Y%m%d`

echo
echo
echo
echo
echo
echo
echo
echo
echo
echo
echo


echo
echo
echo "*****************************************************************************************************************************"
echo
echo
file=$path/pyros2_last.log
echo "CHRONO LAST LOG ($file):"
nblines=`wc -l $file`
echo "Nb lines = $nblines"
echo
cat $file

echo
echo
echo "*****************************************************************************************************************************"
echo
echo
file=$path/pyros2_$day.log
echo "CHRONO FULL LOG ($file):"
tail -n $nblinestoshow $file


agent=AgentDeviceGemini
path=$path/$agent/
echo
echo
echo "*****************************************************************************************************************************"
echo
echo
file=$path/${agent}_last.log
echo "$agent LAST LOG ($file):"
nblines=`wc -l $file`
echo "Nb lines = $nblines"
echo
cat $file

echo
echo
echo "*****************************************************************************************************************************"
echo
echo
file=$path/${agent}_$day.log
echo "$agent FULL LOG ($file):"
tail -n $nblinestoshow $file

5929477c   Etienne Pallier   ajout d'un fichie...
63
64
65
66
67
68
69
70
71
72
73

echo
echo
echo "*****************************************************************************************************************************"
echo
echo
path=config/logs/
file=$path/pyros_warn.log
echo "WARNING/ERRORS LOG ($file):"
echo
cat $file