12 lines
205 B
Bash
12 lines
205 B
Bash
#!/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
|
|
|
|
|