diff --git a/.subjects/STUD_PART/exam_06/0/mini_serv/catchmsg.sh b/.subjects/STUD_PART/exam_06/0/mini_serv/catchmsg.sh index 3e99eb2..37759a5 100644 --- a/.subjects/STUD_PART/exam_06/0/mini_serv/catchmsg.sh +++ b/.subjects/STUD_PART/exam_06/0/mini_serv/catchmsg.sh @@ -2,7 +2,6 @@ # close fd before init exec 6<&- -nc localhost $1 exec 6> bim & sleep 1 -echo "Si vous ne voyez QUE ce message, c'est mauvais signe." | nc -q 0 localhost $1 +echo "Si vous ne voyez QUE ce message, c'est mauvais signe." | eval $nc_command sleep 0.2 -echo "Bienvenue sur le test de votre miniserv" | nc -q 0 localhost $1 +echo "Bienvenue sur le test de votre miniserv" | eval $nc_command sleep 0.2 -echo "Ceci est un message" | nc -q 0 localhost $1 +echo "Ceci est un message" | eval $nc_command sleep 0.2 -printf "Voici un texte sans retour a la ligne" | nc -q 0 localhost $1 +printf "Voici un texte sans retour a la ligne" | eval $nc_command sleep 0.2 -echo -n "This is a text without backline at the end" | nc -q 0 localhost $1 +echo -n "This is a text without backline at the end" | eval $nc_command sleep 0.4 -printf "Et voici un texte avec plusieurs\nretours\na\nla\nligne\n" | nc -q 0 localhost $1 +printf "Et voici un texte avec plusieurs\nretours\na\nla\nligne\n" | eval $nc_command sleep 0.2 bash test_eof.sh $1 sleep 1 -cat very_long_msg.txt | nc -q 0 localhost $1 +cat very_long_msg.txt | eval $nc_command sleep 1 -cat other_long_msg.txt | nc -q 0 localhost $1 +cat other_long_msg.txt | eval $nc_command sleep 2