Rev 8311 | Rev 12219 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 8311 | Rev 12207 | ||
---|---|---|---|
Line 6... | Line 6... | ||
6 | if [ ! -s "$session_dir/user.getraw" ]; then |
6 | if [ ! -s "$session_dir/user.getraw" ]; then |
7 | echo "No work has been done by this participant up to now." |
7 | echo "No work has been done by this participant up to now." |
8 | exit |
8 | exit |
9 | fi |
9 | fi |
10 | if [ "$w_test" = "no" ]; then |
10 | if [ "$w_test" = "no" ]; then |
11 | echo " Date.Hour session |
11 | echo " Date.Hour session sheet exo Requete Statut" |
12 | echo "------------------------------------------------------------" |
12 | echo "------------------------------------------------------------" |
13 | cat $session_dir/user.getraw | cut -d" " -f1,3 ; |
13 | cat $session_dir/user.getraw | cut -d" " -f1,3 ; |
14 | else |
14 | else |
15 | echo " Date.Hour session sheet exo |
15 | echo " Date.Hour session sheet exo Requete IP Statut" |
16 | echo "------------------------------------------------------------" |
16 | echo "------------------------------------------------------------" |
- | 17 | if [ "$w_wims_user" = "supervisor" ]; then |
|
- | 18 | cat $session_dir/user.getraw | cut -d" " -f1,2,3,4 ; |
|
- | 19 | else |
|
17 | cat |
20 | cat $session_dir/user.getraw | cut -d" " -f1,2,3 ; |
- | 21 | fi; |
|
18 | fi; |
22 | fi; |
19 | 23 |