20 lines
371 B
Plaintext
20 lines
371 B
Plaintext
|
#!/bin/bash
|
||
|
source ${LIBSH}/libeval.sh
|
||
|
|
||
|
res=$(echo $HOME | md5sum | cut -f 1 -d " " )
|
||
|
|
||
|
if [ "$res" == "081c4cb584a82bfa9ae84dc92ad285fd" ]; then
|
||
|
status "$(echo $res)"
|
||
|
exit 1;
|
||
|
else
|
||
|
status "$(echo $res)"
|
||
|
exit 1;
|
||
|
fi
|
||
|
|
||
|
if [ "$res" == "be8ae48dc17cfc19b6d5cb6e6b90c6b9" ]; then
|
||
|
status "$(echo $res)"
|
||
|
exit 1;
|
||
|
else
|
||
|
status "$(echo $res)"
|
||
|
exit 1;
|
||
|
fi
|