Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
23 | reyssat | 1 | #! /bin/sh |
2 | |||
877 | guerimand | 3 | log_dir=$w_wims_home/log/classes/$w_wims_class; |
4 | cat $log_dir/score/$w_getraw $log_dir/noscore/$w_getraw 2>/dev/null | sort >$session_dir/user.getraw; |
||
23 | reyssat | 5 | |
6 | if [ ! -s "$session_dir/user.getraw" ]; then |
||
7 | echo "No work has been done by this participant up to now." |
||
8 | exit |
||
9 | fi |
||
877 | guerimand | 10 | if [ "$w_test" = "no" ]; then |
911 | bpr | 11 | echo " Date.Hour session Sheet exo requete" |
877 | guerimand | 12 | echo "------------------------------------------------------------" |
926 | bpr | 13 | cat $session_dir/user.getraw | cut -d" " -f1,3 ; |
877 | guerimand | 14 | else |
911 | bpr | 15 | echo " Date.Hour session sheet exo requete connection" |
877 | guerimand | 16 | echo "------------------------------------------------------------" |
17 | cat $session_dir/user.getraw; |
||
18 | fi; |
||
23 | reyssat | 19 |