26 lines
433 B
Plaintext
26 lines
433 B
Plaintext
|
#!/bin/bash
|
||
|
# Modified: 27/03/2020
|
||
|
# P Anelli"
|
||
|
# Session 3
|
||
|
|
||
|
source ${LIBSH}/libeval.sh
|
||
|
|
||
|
#-----------------------------------------
|
||
|
challenge=C13Q1
|
||
|
rep=~/Sequence1
|
||
|
#-----------------------------------------
|
||
|
# Debut
|
||
|
banniere $challenge
|
||
|
|
||
|
# 1
|
||
|
[ $(pwd) == "$rep" ]
|
||
|
step $(vraifaux $?) "Le repertoire courant est $rep"
|
||
|
|
||
|
#-----------------------------------------
|
||
|
# Fin
|
||
|
status "${challenge}_$res"
|
||
|
exit 0
|
||
|
|
||
|
|
||
|
# listcode = [ '000', '8c3' ]
|