# new file: compare.sh

#	new file:   compare_result.md
This commit is contained in:
Easy Build 2017-03-22 09:01:17 +01:00
parent ef180c45b0
commit 7645287d71
2 changed files with 1474 additions and 0 deletions

51
compare.sh Executable file
View File

@ -0,0 +1,51 @@
# !/bin/bash
# skript pro kontrolu zda eb předpis, který je v easyconfigs-it4i je nainstalován
ml --show_hidden -t av 2>&1 > /dev/null| awk '{print $1 }' | grep -v "/apps/*" > ml_av
find /apps/easybuild/easyconfigs-it4i/ -type f -name "*.eb" | cut -d '/' -f 7 | sed 's/.eb//' | sed 's/-/\//' > eb-it4i
printf "\033c"
echo "|easyconfig-it4i|state|" > compare_result.md
echo "| --- | --- |" > compare_result.md
INSTALL="FALSE"
format="%-80s %30s\n"
red=$'\e[1;31m'
grn=$'\e[1;32m'
yel=$'\e[1;33m'
blu=$'\e[1;34m'
mag=$'\e[1;35m'
cyn=$'\e[1;36m'
end=$'\e[0m'
while read x; do
while read y; do
if [ "$x" = "$y" ]; then
INSTALL="OK"
break
fi
done < <(cat ml_av)
if [ ! "$INSTALL" = "OK" ]; then
if [ -d "/apps/all/$x" ]; then
INSTALL="WARNING"
fi
fi
if [ "$INSTALL" = "OK" ]; then
printf "$format" "$x" "${grn}installed${end}"
INSTALL="FALSE"
elif [ "$INSTALL" = "WARNING" ]; then
printf "$format" "$x" "${yel}warning${end}"
echo "|$x|warning|" >> compare_result.md
INSTALL="FALSE"
else
printf "$format" "$x" "${red}not installed${end}"
echo "|$x|not installed|" >> compare_result.md
INSTALL="FALSE"
fi
done < <(cat eb-it4i)
rm eb-it4i ml_av

1423
compare_result.md Normal file

File diff suppressed because it is too large Load Diff