12 lines
205 B
Plaintext
12 lines
205 B
Plaintext
|
#!/bin/bash
|
||
|
source ${LIBSH}/libeval.sh
|
||
|
|
||
|
if [ "$PWD" == "/home/alice/imdb" ]; then
|
||
|
status "$(cat <&0)"
|
||
|
else
|
||
|
echo "Vous devez vous positionnner dans le répertoire /home/alice/imdb"
|
||
|
exit 1;
|
||
|
fi
|
||
|
|
||
|
|