Merge branch 'easyconfigs-it4i-salomon'

This commit is contained in:
Lukas Krupcik 2017-03-22 10:51:27 +01:00
commit e702565fae
2 changed files with 1391 additions and 12 deletions

View File

@ -5,7 +5,13 @@ printf "\033c"
printf "Prepare data for analyze ...\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" | grep -v "_not_installed/*" | cut -d '/' -f 6,7 | sed 's/.eb//' > eb-it4i_tmp
if [ "$1" = "not" ]; then
find /apps/easybuild/easyconfigs-it4i/ -type f -name "*.eb" | grep "_not_installed/*" | cut -d '/' -f 7,8 | sed 's/.eb//' > eb-it4i_tmp
else
find /apps/easybuild/easyconfigs-it4i/ -type f -name "*.eb" | grep -v "_not_installed/*" | cut -d '/' -f 6,7 | sed 's/.eb//' > eb-it4i_tmp
fi
while read i; do a=$(echo $i | cut -d '/' -f 1); b=$(echo $i | sed -rn "s/$a\/$a[-]+(.*)/\1/p"); echo "$a/$b" ;done < <(cat eb-it4i_tmp) > eb-it4i
echo "|easyconfig-it4i|state|" > compare_result.md
@ -46,7 +52,7 @@ while read x; do
else
printf "$format" "$x" "${red}not installed${end}"
echo "|$x|not installed|" >> compare_result.md
echo "$x" >> mv
# echo "$x" >> mv
INSTALL="FALSE"
fi

File diff suppressed because it is too large Load Diff