gCubeActions/18-05-22-grepString/grepHomeLibrary.sh

9 lines
377 B
Bash
Raw Permalink Normal View History

2022-05-18 16:15:08 +02:00
#!/usr/bin/env bash
2022-05-18 16:35:03 +02:00
out=`find . -name pom.xml -exec grep -E 'imagej|itext|jackrabbit-jcr-commons|jackrabbit-jcr-rmi-custom|jcr|jfile|tika-core|xstream|xmlpull|xml-apis|xpp3_min' /dev/null {} + || echo 'empty'`
2022-05-18 16:15:08 +02:00
if [[ ["${out}" != "empty"] && "$(grep pom.xml <<< ${out})" ]]; then
echo "${out}"
2022-05-18 16:26:57 +02:00
echo "Home Library dep found"
2022-05-18 16:15:08 +02:00
else
2022-05-18 16:26:57 +02:00
echo "Home Library dep not found"
fi